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 Perspectives lazy loading #2845

Closed
wants to merge 33 commits into from

Commits on Nov 2, 2015

  1. Configuration menu
    Copy the full SHA
    20949bd View commit details
    Browse the repository at this point in the history
  2. Remove spaceline configuration

    TheBB committed Nov 2, 2015
    Configuration menu
    Copy the full SHA
    1104810 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #7 from TheBB/perspectives-fix

    Remove spaceline configuration
    CestDiego committed Nov 2, 2015
    Configuration menu
    Copy the full SHA
    ad10503 View commit details
    Browse the repository at this point in the history
  4. Fix LaTeX flyspell hook

    TheBB committed Nov 2, 2015
    Configuration menu
    Copy the full SHA
    33a19b4 View commit details
    Browse the repository at this point in the history
  5. Fix doc publishing code

    - Fix wrong function names and variables
    - Move export folder out of source tree, so we don't export the exports
    - Add jpg to source image files
    TheBB committed Nov 2, 2015
    Configuration menu
    Copy the full SHA
    212389b View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2015

  1. Configuration menu
    Copy the full SHA
    ac14e3f View commit details
    Browse the repository at this point in the history
  2. Move the dictionary selection code into adict hook

    When `auto-dictionary-mode` is activated, it tries to guess the
    dictionary no matter if a dictionary was manually selected before, what
    is annoying when toggling spell-checking off/on. To avoid this, a piece
    of code was added to the spell-checking toggle to select the
    buffer-local dictionary if it was set.
    
    As mentioned by lunaryorn, this part of code should also be called when
    flyspell is enabled/disabled by an other mean than the spacemacs toggle.
    This commit move the code to the `auto-dictionary-mode-hook` for this
    purpose.
    StreakyCobra authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    302ae03 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eafec19 View commit details
    Browse the repository at this point in the history
  4. Disable automatic call to flyspell-buffer

    Some users complained about slowness when opening files due to
    spell-checking being activated. This commit revert to old behaviour
    checking only the words under the cursor and not the whole buffer.
    StreakyCobra authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    02fb2bd View commit details
    Browse the repository at this point in the history
  5. Move recentf initialization to :init section

    * In the :config section, the parameters cannot easily be overridden by
      the user.
    duerrp authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    c2ae7ce View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fb36140 View commit details
    Browse the repository at this point in the history
  7. Refactor spacemacs-base/init-recentf

    Use progn forms and unify setq expressions.
    syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    25c9d12 View commit details
    Browse the repository at this point in the history
  8. Add SPC hdF describe-face binding

    TheBB authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    b19e6f1 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6b2da3c View commit details
    Browse the repository at this point in the history
  10. force haskell loading in cabal files

    d12frosted authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    4dc3b12 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    bb80e94 View commit details
    Browse the repository at this point in the history
  12. Add the lorem-ipsum package

    Add the `lorem-ipsum` package to insert text, and bind it to:
    
    * `xil`: lorem-ipsum-insert-list
    * `xip`: lorem-ipsum-insert-paragraphs
    * `xis`: lorem-ipsum-insert-sentences
    
    `x` as it's text related, and `l` for `list, `p` for `paragraph` and `s`
    for sentences.
    StreakyCobra authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    5f7c3d0 View commit details
    Browse the repository at this point in the history
  13. Move lorem ipsum to SPC x i l and declare prefixes

    This a rarely used key binding so we can nest it a little bit more and
    free some key bindings in the `text insert` namespace.
    syl20bnr committed Nov 3, 2015
    2 Configuration menu
    Copy the full SHA
    34ce7a0 View commit details
    Browse the repository at this point in the history
  14. Introduce 'relative for global-line-numbers

    Allow to use 'relative as value for the dotspacemacs-global-line-numbers
    setting. This enable relative global line numbers as it is a common
    usage.
    StreakyCobra authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    612c3df View commit details
    Browse the repository at this point in the history
  15. Remove global infix in dotspacemacs-global-line-numbers

    I feel that it is not needed because it makes not a lot of sense to
    have it non global since it is a dotfile variable.
    
    Also remove ' from the docstring for consistency.
    syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    b405752 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    f3b99d6 View commit details
    Browse the repository at this point in the history
  17. scala: Fix bindings for Ensime test commands

    Sebastian Wiesner authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    02542d6 View commit details
    Browse the repository at this point in the history
  18. Fix vinegar keybindings

    fbergroth authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    946fd8c View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    1a7bc42 View commit details
    Browse the repository at this point in the history
  20. Use q to exit macrostep

    If `macrostep-mode` is entered separate of micro-state, there is no
    normal mode mapping that will exit it.
    punassuming authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    e29125e View commit details
    Browse the repository at this point in the history
  21. Add ace-jump-helm-line for quick helm navigation.

    Useful when you don't desire filtering helm buffer but still want to
    navigate.
    punassuming authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    44109c3 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    df003f2 View commit details
    Browse the repository at this point in the history
  23. Helm locate automatically sets the locate command

    Can't check simply for executable, as `helm-locate-set-command` is
    always run.
    punassuming authored and syl20bnr committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    500c22e View commit details
    Browse the repository at this point in the history
  24. Actually disable flyspell buffer in flyspell hook

    Missing from 02fb2bd after rebase
    TheBB committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    b7fff9e View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    0567f5c View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    9ef2bf3 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    5b2c747 View commit details
    Browse the repository at this point in the history
  28. Prefix persp-curr-name

    CestDiego committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    9bd87da View commit details
    Browse the repository at this point in the history