Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix moving outside brackets on pressing <CR> #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Dec 30, 2015

  1. Fix moving outside brackets on pressing <CR>

    Earlier behaviour (C code example)
    
    if (condition) {|} // Cursor at |
    
    Pressing <CR> now changed it to
    
    if (condition) {
    }|
    
    After this fix, pressing <CR> changes it to
    
    if (condition) {
    |
    }
    gauravjuvekar committed Dec 30, 2015
    Configuration menu
    Copy the full SHA
    cef65a3 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2016

  1. Add .gitignore

    gauravjuvekar committed Feb 23, 2016
    Configuration menu
    Copy the full SHA
    287e4b9 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2016

  1. Configuration menu
    Copy the full SHA
    ef39aa1 View commit details
    Browse the repository at this point in the history