Free up right alt in emacs.

This commit is contained in:
jgrogan 2024-07-03 08:40:09 +01:00
parent c9e186588f
commit 0dc5cf9245
2 changed files with 8 additions and 0 deletions

View file

@ -5,6 +5,10 @@
(global-set-key "\C-x\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 initial-scratch-message nil)

View file

@ -27,3 +27,7 @@ export PATH=$PATH:$TOOLS_DIR/qt_install/bin
alias cdcode="cd $CODE_DIR"
alias cdwtools="cd $WTOOLS_DIR"
alias cdproj="cd $PROJ_DIR"
# Git
alias gpo="git push origin"
alias gcb="git checkout branch"