<root> / lesskey (3138aae696cf5dac29dab965496ffb9929b0148f) (1,035B) (mode 100644) [raw]
# ==============================================================================
# additional keys for command mode

#command

# reset filter to an empty value
c filter ^M

# restore last value of the filter
C filter ^P^M

# ==============================================================================
# shell (or Emacs) like shortcuts for the line-edit mode

#line-edit

# go to the beginning of the line on Ctrl-A key
^A home

# go to the end of the line on Ctrl-E key
^E end

# move cursor one character to the right on Ctrl-F key
^F right

# move cursor one character to the right on Ctrl-B key
^B left

# delete a character to the right of the cursor on Ctrl-D key
^D delete

# remove a word to the left of the cursor on Ctrl-W key
^W word-backspace

# quit command-line mode on Escape key
\e abort

# recall previous history item on Ctrl-P key
^P up

# recall next history item on Ctrl-N key
^N down

# ==============================================================================

# vim: set textwidth=80 syntax+=.autofold :
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/dotfiles

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/dotfiles

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master