Free up right alt in emacs.
This commit is contained in:
parent
c9e186588f
commit
0dc5cf9245
2 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,10 @@
|
||||||
(global-set-key "\C-x\C-m" 'execute-extended-command)
|
(global-set-key "\C-x\C-m" 'execute-extended-command)
|
||||||
(global-set-key "\C-c\C-m" 'execute-extended-command)
|
(global-set-key "\C-c\C-m" 'execute-extended-command)
|
||||||
|
|
||||||
|
;; For UK/IRL don't use right Alt key in Emacs, so we
|
||||||
|
;; can still use hash symbol etc.
|
||||||
|
(setq ns-right-alternate-modifier (quote none))
|
||||||
|
|
||||||
(setq inhibit-startup-message t)
|
(setq inhibit-startup-message t)
|
||||||
(setq initial-scratch-message nil)
|
(setq initial-scratch-message nil)
|
||||||
|
|
||||||
|
|
|
@ -27,3 +27,7 @@ export PATH=$PATH:$TOOLS_DIR/qt_install/bin
|
||||||
alias cdcode="cd $CODE_DIR"
|
alias cdcode="cd $CODE_DIR"
|
||||||
alias cdwtools="cd $WTOOLS_DIR"
|
alias cdwtools="cd $WTOOLS_DIR"
|
||||||
alias cdproj="cd $PROJ_DIR"
|
alias cdproj="cd $PROJ_DIR"
|
||||||
|
|
||||||
|
# Git
|
||||||
|
alias gpo="git push origin"
|
||||||
|
alias gcb="git checkout branch"
|
||||||
|
|
Loading…
Reference in a new issue