Skip to content

Latest commit

 

History

History
61 lines (56 loc) · 2.5 KB

emacs.md

File metadata and controls

61 lines (56 loc) · 2.5 KB

EMACS

Moving CLI and emacs

LINKS:

PACKAGES:

COMMANDS:

  • C-h k describe-key - Describe which function a specific shortcut will evoke
  • C-h f describe-function - Show docstring for a given function
  • M-x execute-extended-command - Run a command by name.
  • C-u M-! - Insert the output of shell command into emacs buffer
  • C-g keyboard-quit - Cancel a command or dialog.
  • M-/ dabbrev-expand - Expand previous word "dynamically".
  • M-% query-replace - Interactive replace.
  • C-s C-w C-s: (isearch) Select the (rest of the) word the TextCursor is on as the search string.
  • find-name-dired: Search DIR recursively for files matching the globbing pattern
  • find-dired: Run find and go into Dired mode on a buffer of the output.
  • re-builder: Construct a regexp interactively.
  • list-matching-lines (this is alias to occur)
  • delete-matching-lines (this is alias to flush-lines)
  • delete-non-matching-lines (this is alias to keep-lines)
  • delete-duplicate-lines (Emacs 24.4) delete duplicated lines in text selection.
  • package-list-packages: Fetch and display the list of available packages.
  • whitespace-cleanup: Cleanup some blank problems in all buffer or at region.
  • kmacro-insert-counter: Generate a secuente C-x ( C-x C-k TAB . RET C-x )
  • global-display-line-numbers-mode or global-linum-mode: Useful for remote pair programing.
  • imenu

EMACS FILE:

https://github.com/rubenrua/dotfiles/blob/master/.emacs.d/init.el