• Home
  • Shell
    • Emacs
    • Perl
    • screen
    • sed
  • Ubuntu
    • VNC
  • Web Development
    • Javascript
    • Joomla
    • MySQL
    • osTicket
  • Windows
    • Gimp

Posts in category Emacs

Emacs> Use % to jump to the matching parenthesis/brackets

Oct26
2010
Written by Scott Rowley

Found the following while working on other emacs configurations, works great for when your code gets out of hand:

;;; Use "%" to jump to the matching parenthesis.
(defun goto-match-paren (arg)
"Go to the matching parenthesis if on parenthesis, otherwise insert
the character typed."
(interactive "p")
(cond ((looking-at "\s(") (forward-list 1) (backward-char 1))
((looking-at "\s)") (forward-char 1) (backward-list 1))
(t (self-insert-command (or arg 1))) ))
(global-set-key "%" `goto-match-paren)
Tagged bracket, edit, jump, parenthesis, search

Emacs> Remove welcome screen/splash from emacs

Oct26
2010
Written by Scott Rowley

If you are tired of seeing the welcome screen, despite it being the 486th time you’ve opened emacs just perform the following:

Edit your .emacs file and add the following:

;; Remove splash screen
(setq inhibit-splash-screen t)
Tagged BASH, splash, welcome

Emacs> Set delete key in emacs

Oct26
2010
Written by Scott Rowley

I really hate that the delete key backspaces. I’m sure there is a lot of pointless posturing on how this is the ‘old school’ way. Well… 1) I don’t care 2) I’m new school and I want a backspace key AND a delete key…
Add the following line to your ~/.emacs file:

(global-set-key (kbd "") 'delete-char)
Tagged backspace, BASH, delete, key

Corrections? Questions? Comments?

Find an error?
Everything work out great for you?
Have some feedback?
Like to see something added to the article?

PLEASE leave us a comment after the article and let us know how we are doing, or if something needs corrected, improved or clarified.

Thank you!
- The Management

Advertisement

Sudo Bash
By Geeks - For Geeks

Back to Top