Git Product home page Git Product logo

emacs's Introduction

Emacs

Document what libraries I use, what I know, and what I want to learn about Emacs.

Basic things

  • How do you create a file?

  • How do you access terminal?

    Answer: `term`
    
  • How do you cancel?

    Answer: `C-g`
    
  • Multiple working tabs?

  • Multiple working panes?

    Answer: vim style with Evil mode
    
  • How to comment out multiple lines?

    Answer: Evil Commentary

  • Equivalent of Tim Pope's surround

    Answer: Evil Surround

  • How to open previous file?

    Answer: One way is using the buffer C-x b (hit tab for a list of autocompletes)

    Answer: C-x left or C-x right

  • How to show the line number?

    Answer: here's one way

    ;; Display line numbers
    (global-linum-mode t)
    (setq linum-format "%d ")
    
  • Change the color of my cursor?

    Answer: some themes did it for me

  • Search locally in a file?

    Answer: 'C-s' to search forward, then C-s for next and C-r for previous. There's also functionality to search backwards C-r but it might be overridden by EVIL

  • Find and replace?

    Answer: M-%, space for yes, n for no, ! for all

  • Wrap text

    Answer: M-q

  • File Tree Viewer

    Answer: Projectile and Neotree

  • Setting a theme?

    Answer: Install and use M-x customize-theme

  • Ctrl-p searching?

    Answer: get projectile, then get helm, then use helm-projectile

Emacs stuff

  • How do I write and use a macro?

  • Help?

    Answer: there's C-h C-h for a list, but C-h k is more usefull for looking up a command or character

Basic Commands

Want

  • Setup C-tags, more here

  • Have autocomplete

  • How to run something Async

  • Elixir Auto format on save

  • Git integration?

    Answer: Magit. Here is a helpful article

  • Markdown formatter

    Answer: markdown mode

  • Disable toolbar on startup

    Answer:

     ;; Remove the toolbar
     (tool-bar-mode -1)
    
     ;; Remove Scroll bars
     (scroll-bar-mode -1)
    

Libraries worth mentioning

  • Not a lib, but Evil Mode is a must

emacs's People

Contributors

nbw avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.