Last active
October 10, 2015 22:28
-
-
Save zonuexe/3760480 to your computer and use it in GitHub Desktop.
nano editorでWindows風のキーバインドなの
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Windows (notepad) like keybinding for nano editor | |
# written by zonuexe, license under GPLv3 or NYSL(0.9982) | |
# lastupdate: h240921 | |
# | |
# how to install | |
# a. rename and move this file to $HOME/.nanorc | |
# % mv nanorc.keybindings $HOME/.nanorc | |
# b. concatenate this file with tail of $HOME/.nanorc | |
# % cat nanorc.keybindings >> $HOME/.nanorc | |
#bind ^B browser main | |
bind ^C copytext main | |
bind ^F whereis main | |
bind ^G gotoline main | |
bind ^I indent main | |
bind ^N exit main | |
bind ^M enter main | |
bind ^S writeout main | |
bind ^R replace main | |
bind ^V uncut main | |
bind ^X cut main | |
bind ^Y redo main | |
bind ^Z undo main | |
bind F1 help main | |
bind F3 whereis main | |
#bind F3 nexthistory search | |
## ここの設定のしかたがわからないの |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment