Commit Graph

12535 Commits

Author SHA1 Message Date
Ray Wang d3d50f580b [spacemacs-editing] initialize `undo-tree-history-directory-alist`
to stop *.~undo-tree~ files from scattering.

Fix: #15426
2022-04-02 18:04:01 +02:00
Maxi Wolff 97af6fa9f8
[neotree] Add zz, zt, zb bindings
To make this buffer behave more vim like.
See #15355
2022-03-31 16:55:29 +02:00
Mattijs Korpershoek 2202597ee3
notmuch: Fix company based address completion (#15392) 2022-03-31 03:45:01 -04:00
SpacemacsBot c2a9aaedff
[bot] "documentation_updates" Mon Mar 28 11:29:34 UTC 2022 (#15433) 2022-03-28 11:38:15 -04:00
John Practicalli cb786cc071 [github] clarify Git configuration and authorisation documentation
Resolve #15377
2022-03-28 13:28:10 +02:00
Maxi Wolff bf64c09535
[org] Make org buffers work with helm-imenu-in-all-buffers
Fixes #15420
2022-03-27 21:23:42 +02:00
Claudio Bley 18ad9759b2
[nixos] Fix variable name in README (#15413) 2022-03-17 11:34:53 -04:00
Dan Kessler 75c30eed0d
[helm] fix typo in helm-ls-git (#15411) 2022-03-16 15:59:54 -04:00
Alfonso Montero d66548fd04
[completion] Fix readme markup. (#15410) 2022-03-16 15:10:42 -04:00
SpacemacsBot e32acdfadf
[bot] "documentation_updates" Fri Mar 11 06:55:25 UTC 2022 (#15402) 2022-03-11 02:33:47 -05:00
John Practicalli d751c09fab
[git] document configuration of Magit Forge and Git identity (#15388)
Add documentatation to the Spacemacs Git layer describing how to configure basic git identity and more importantly how to configure Magit Forge to access GitHub / GitLab using a machine configuration and an encrypted file to hold the personal access token.
2022-03-11 06:54:23 +00:00
Lucius Hu 82cb081d84
README: Added a Discord Channel 2022-03-10 22:26:08 +00:00
John Practicalli ed19c94a1e
[space-doc] use cl-return as return is obsolete (#15397) 2022-03-06 11:48:20 -05:00
Aleksander Boruch-Gruszecki f548975841
Use org-agenda-files correctly in insert-recent-files (#15367) 2022-02-25 12:30:03 -05:00
Dominic Pearson a027f34a94
spacemacs-navigation: golden-ratio fix for SPC w TAB. (#15374)
`SPC w TAB` with golden-ratio doesn't work, due to missing hooks. This adds them.
2022-02-25 04:21:17 +00:00
Dan Kessler b316ee936f
reinstate cfgl-layer docstring fix (#15376) 2022-02-23 16:01:30 -05:00
SpacemacsBot 9f1155a998
[bot] "documentation_updates" Tue Feb 22 16:39:44 UTC 2022 (#15373) 2022-02-22 11:44:00 -05:00
Rodrigo Kassick 8587ab6df0
fix: do not setenv PAGER in shell layer (#15369) 2022-02-22 11:37:58 -05:00
Keith Pinson e9adfe9122
[scala] add keybinding for running `Test / compile` in SBT (#15372) 2022-02-22 11:37:17 -05:00
Lucius Hu 011b1454e1
quickurl: fix typo
fixes #15365
co-authored-by: Alex <aavanian@users.noreply.github.com>
2022-02-22 04:51:18 +00:00
Dan Kessler 3cc0f99800
[osx] don't set dired-listing-switches (#15371) 2022-02-21 21:45:57 -05:00
Alfonso Montero 4f66e93ed9
Add 'devdocs' dir to '.gitignore' file. (#15368) 2022-02-20 22:50:46 -05:00
Lucius Hu 761e2025aa
spacemacs-buffer: fix `pacemacs-buffer||propertize-heading`
fixes https://github.com/syl20bnr/spacemacs/issues/15360
2022-02-20 01:56:45 +00:00
Lucius Hu 910245527d
spacemacs-evil: use official evil-iedit-state
Reuse the official package since the upstream PR is merged.
2022-02-20 01:54:36 +00:00
Lucius Hu ee3c558c80
spacemacs-buffer: fixed a bug on native-comnp
This was reported in 82624811dd
2022-02-18 03:22:39 +00:00
Lucius Hu 82624811dd
spacemacs-buffer: bug fix and improvement
- Fixed a bug that when `all-the-icons` is excluded by user, Emacs reports
that using undefined `all-the-icons` functions.
- Changed the `spacemacs-buffer-mode` that now it derives from `special-mode`.
  - Also defined a new command `spacemacs-buffer/return` which binds to `RET`
  key in `spacemacs-buffer-mode`. It opens the button on the current line if
  there's any, or move the cursor to next line.
2022-02-17 17:58:17 -05:00
Andreas Sahlbach 3deed8f060
compleseus: corrects name of some renamed consul commands (#15352) 2022-02-16 18:45:42 +00:00
Lucius Hu 13dedf7250
spacemacs-buffer: fix bug to show random banner
The previous commit has a bug that after killing the startup buffer and re-open
it, the random text banner would not appear.

This commit fixes that.
2022-02-15 14:01:03 -05:00
Lucius Hu b7e1dee13f
spacemacs-buffer: Added optional feature to show file icons (#15332)
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2022-02-15 06:52:00 +00:00
Lucius Hu f2afab0c32
fixup! core-jump: fixed a typo
This commit prevents the error when `handler` is atomic instead of a list.
2022-02-14 21:49:29 -05:00
Lucius Hu db15a2d5a0
core-jump: fixed a typo
For example, in `rust-mode`, `(spacemacs//get-jump-handlers)` returns
`((lsp-ui-peek-find-definitions :async t) evil-goto-definition)`.

So `-handler` is bound to the first one, i.e. `(lsp-ui-peek-find-definitions :async t)`.
We need to figure out whether it's asynchronous by checking the `:async` keyword argument.

But before this commit, we wrongly checks the second handler in the handlers list.
Even when multiple handlers do exist and they are all async, the typo made it sub-optimal since it uses not the best handler.

This commit fixes that.
2022-02-15 01:24:16 +00:00
Lucius Hu 0bdddfc165
tabs: fix a typo
co-authored-by: Yixuan Chen <yixuan.chen@yale.edu>
2022-02-14 14:01:17 -05:00
Lucius Hu 3429bcf056
fixed typos postframe to posframe 2022-02-14 11:05:18 -05:00
Daniel Nicolai 25674b7768
Fix tab key functionality in pdf outline mode (#15345) 2022-02-14 09:33:48 -05:00
Lucius Hu 30e32ea41f
fixup! [auto-completion] add company-posframe 2022-02-14 02:36:17 -05:00
August Feng ec8c87df27
spacemacs-purpose: Improved README.org (#15346) 2022-02-14 03:10:05 +00:00
Lucius Hu fe23d52414
fixup! fixup! help/helpful: Set tab-width to 8, better integration w/Ivy (#15243)
The previous commit had two issues:
- It doesn't have effect for `help-mode` because its was loaded too late. (In
the `:config` section of `help-fn+`.
- It only has effect for the code sections in `helpful-mode` buffer. And has no
effect in the buffer opened via button widget in either `help-mode` or
`helpful-mode`.

This commit fixes both problems.
2022-02-13 21:58:47 -05:00
SpacemacsBot 6fc9faee85
[bot] "documentation_updates" Sun Feb 13 20:45:13 UTC 2022 (#15343) 2022-02-13 15:46:34 -05:00
Luis Ch ea020911f8
Add basic LSP support to NixOS layer (#15342)
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2022-02-13 20:44:16 +00:00
fleimgruber 179bb38ebc
fix: progn typo in org-transclusion :init (#15340) 2022-02-12 09:12:52 -05:00
thanhvg adf9da378b
[auto-completion] add company-posframe (#15320)
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2022-02-12 06:01:59 +00:00
SpacemacsBot 4d0529d3e7
[bot] documentation_updates (#15339)
Co-authored-by: SpacemacsBot <not@an.actual.email.beep.boop>
2022-02-12 05:36:08 +00:00
thanhvg 60e512a48b
[iedit] use fork (#15318)
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2022-02-12 05:30:49 +00:00
thanhvg 023ba524f4
[tree-sitter] add option to seletively disable tree sitter hl mode (#15317)
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2022-02-12 05:25:01 +00:00
SpacemacsBot 44fbaa3d10
[bot] documentation_updates (#15338)
Co-authored-by: SpacemacsBot <not@an.actual.email.beep.boop>
2022-02-12 05:15:52 +00:00
thanhvg 9deb58d16a
[elisp] add elisp-def (#15315)
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2022-02-12 05:14:57 +00:00
Lucius Hu 77ba076f69
spacemacs-editing-visual: rework (#15322) 2022-02-12 04:58:35 +00:00
SpacemacsBot a7d91f1b4f
[bot] documentation_updates (#15337)
Co-authored-by: SpacemacsBot <not@an.actual.email.beep.boop>
2022-02-12 04:47:44 +00:00
Keith Pinson 34e14fb681
[org] add support for transclusion (#15333)
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2022-02-12 04:45:45 +00:00
SpacemacsBot 8863a34b56
[bot] built_in_updates (#15336)
Co-authored-by: SpacemacsBot <not@an.actual.email.beep.boop>
2022-02-12 04:16:55 +00:00