Commit graph

12094 commits

Author SHA1 Message Date
Henrik Lissner
28ee896420
nit: minor comment reformatting & revision 2024-05-21 17:17:04 +02:00
Henrik Lissner
75dd1a1f45
tweak(emacs-lisp): remove pin truncation
This removes the truncation of `package!` `:pin`s. This was originally
intended to make packages.el files easier to skim, but in hindsight it
didn't really. It served little other purpose but to make it harder for
folks to interact with the :pin string.
2024-05-21 17:17:03 +02:00
Henrik Lissner
ae7c8c4135
fix(workspaces): remove ivy integration
Due to upstream changes in ivy-rich, +workspace/switch-to throws a
`wrong-type-argument listp leaf` error. As I plan to phase out Ivy
support (and the Ivy module) in the long term, I'll simply remove
ivy (and ivy-rich) integration in the workspaces module, rather than
update it.

Fix: #7499
Fix: #7173
2024-05-21 17:17:03 +02:00
Henrik Lissner
187c654c5d
bump: :tools tree-sitter
emacs-tree-sitter/tree-sitter-langs@20fbbb8573 -> emacs-tree-sitter/tree-sitter-langs@c56cb51104
meain/evil-textobj-tree-sitter@220ceae065 -> meain/evil-textobj-tree-sitter@a19ab9d89a
2024-05-21 17:17:03 +02:00
Henrik Lissner
7308e74203
refactor(vertico): don't use bind-key
This is the only internal usage of :bind, which I want to avoid, because
it pulls in bind-key, which offers no real benefit over just about any
other key binding function or macro, so I'd rather use what is already
available (like map!).
2024-05-21 17:17:01 +02:00
Henrik Lissner
4f914f3e56
docs(docker): use after! & don't recommend use-package! 2024-05-21 17:17:01 +02:00
Henrik Lissner
94ff9c09e1
fix(default): restore accidentally gated keybinds (part 2)
I haven't published support for negated flags (e.g. -eglot) yet; this
snuck into 76b4522.

Amend: 76b452278fcb
Ref: #7745
2024-05-21 17:17:01 +02:00
Henrik Lissner
c2947d7bac
fix(default): restore accidentally gated keybinds
These were accidentally gated as part of 6949451 (#7002).

Amend: 6949451b00ec
Close: #7745
Co-authored-by: raszi <raszi@users.noreply.github.com>
2024-05-21 17:17:01 +02:00
tecosaur
122b405afe
fix(modeline,everywhere): adjust checker -> check
As part of the recent UI bump (665d808d09ec), the doom-modeline changed
the name of the "checker" segment to "check".

Amend: 665d808d09ec
2024-05-21 17:17:01 +02:00
Henrik Lissner
0716335c4d
bump: :ui
Alexander-Miller/treemacs@df26b6ab9a -> Alexander-Miller/treemacs@8c6df39f01
dgutov/diff-hl@b8b2727a72 -> dgutov/diff-hl@9662083943
doomemacs/themes@ff26f26ea3 -> doomemacs/themes@37d2182f50
jrblevin/deft@28be94d89b -> jrblevin/deft@bb1a16b87c
seagle0128/doom-modeline@bf880ae56f -> seagle0128/doom-modeline@e09b8e989f
2024-05-21 17:17:00 +02:00
StrawberryTea
c62aa84709
docs(corfu): debugging cape-dabbrev 2024-05-21 17:17:00 +02:00
Sean Farley
8451587ab0
refactor(corfu): consolidate +orderless logic without vertico
This tidy ups the corfu module to use the logic when a user enables
corfu +orderless without enabling vertico. Since that's probably a niche
situation, we only specify commit to pin to orderless in the vertico
module so that contributors aren't tripped up with trying to remember to
update orderless in two different code locations. Of course, if this
turns out to be a more popular use-case we can re-evaluate this logic.
2024-05-21 17:17:00 +02:00
Sean Farley
d7b70ddca4
nit(vertico): fix spelling in some docstrings 2024-05-21 17:17:00 +02:00
Sean Farley
1abcb71571
feat(vertico): add orderless annotation filtering
Ref: oantolin/orderless#162
2024-05-21 17:17:00 +02:00
Henrik Lissner
e996c3b161
bump: :lang julia
JuliaEditorSupport/julia-emacs@7a8c868e0d -> JuliaEditorSupport/julia-emacs@2dfc869ff6
gcv/julia-snail@d36653bb93 -> gcv/julia-snail@a25ce84748
non-Jedi/eglot-jl@7dc604fe42 -> non-Jedi/eglot-jl@1d9cab6823
2024-05-21 17:17:00 +02:00
Henrik Lissner
be8d5b2c36
refactor(lsp): suffix advice & remove redundancy
- Advice functions ought to have a -a suffix.
- `eglot-send-changes-idle-time` is already 0.5 upstream, by default.
2024-05-21 17:16:59 +02:00
Henrik Lissner
baeb7838f6
fix(vertico): consult-dir: don't guess user from containers
The tramp string used to connect to the container uses the first
`container-runtime ps` argument as a username, but the first argument
returned is the container ID, not a username.

Close: #7674
Co-authored-by: bergmannf <bergmannf@users.noreply.github.com>
Co-authored-by: elken <elken@users.noreply.github.com>
2024-05-21 17:16:59 +02:00
Henrik Lissner
30bcf18397
fix(julia): revise julia-snail settings
- julia-snail-multimedia-enable is buffer-local, so setq-default is
  needed.
- julia-snail-popup-display-eval-results is already :command upstream.
- julia-snail will automatically calculate a (reasonable) value for
  julia-snail-popup-display-face in the absence of an explicit setting.
- julia-snail-popup-display-face was filled with references to
  doom-themes symbols that aren't global. It's any wonder they worked
  before this. Besidse, it's best we not couple this module with one
  specific theme (or theme pack in this case).

Close: #7625
Co-authored-by: ngharrison <ngharrison@users.noreply.github.com>
2024-05-21 17:16:59 +02:00
Henrik Lissner
07310dc9e2
feat(vertico): add consult-yasnippet
Close: #7471
Co-authored-by: LemonBreezes <LemonBreezes@users.noreply.github.com>
2024-05-21 17:16:59 +02:00
Ian McCowan
9288d6a5e4
fix(fold): reorder fold type checks
(+fold--ts-fold-p) just checks that the mode is active so it will block
any checks following it. Move it to the end so other fold types have a
chance, and consistently order fold type checks.
2024-05-21 17:16:59 +02:00
Henrik Lissner
ef3d30a9a2
refactor(corfu): remove redundant setting
Upstream, corfu-preview-current is already 'insert by default.
2024-05-21 17:16:59 +02:00
Henrik Lissner
2de1306da0
fix(corfu): wrong-type-argument characterp error
Corfu doesn't support a nil corfu-separator in general, but
+corfu-smart-sep-toggle-escape, specifically, will throw a characterp
type error if the user hasn't enabled +orderless.
2024-05-21 17:16:59 +02:00
Henrik Lissner
0b21a8252e
fix(corfu): ispell: only complain once per session 2024-05-21 17:16:58 +02:00
Henrik Lissner
122dd93e5b
fix(corfu): gate corfu-terminal config
If :completion corfu users don't have :os tty enabled, loading
corfu-terminal will throw an error in TTY Emacs.
2024-05-21 17:16:58 +02:00
Henrik Lissner
c98848e599
bump: :completion vertico
minad/consult-flycheck@d83f87581a -> minad/consult-flycheck@754f5497d8
minad/consult@9463146ba7 -> minad/consult@b48ff6bf05
minad/marginalia@ea356ebb1d -> minad/marginalia@f6fe86b989
minad/vertico@4a7da56b02 -> minad/vertico@68cbd47589
oantolin/embark@60139db879 -> oantolin/embark@c93abadc82
oantolin/orderless@b24748093b -> oantolin/orderless@dc7a781acf
2024-05-21 17:16:58 +02:00
Luigi Sartor Piucco
d2d22e024c
docs(corfu): add @LemonBreezes as co-maintainer
Co-authored-by: StrawberryTea <look@strawberrytea.xyz>
2024-05-21 17:16:58 +02:00
StrawberryTea
e574d2d711
feat(corfu): update minibuffer hints manually
We need this advice to ensure that visual hints are updated before
exiting.
2024-05-21 17:16:58 +02:00
StrawberryTea
2088c6fc27
feat(corfu): make minibuffer completion optional 2024-05-21 17:16:58 +02:00
Luigi Sartor Piucco
d44d8d94ea
feat(corfu): general move-to-minibuffer impl
We previously implemented only consult/vertico as a target for export,
now we have all of them. It was necessary to use case-by-case
conditions, unfortunately, because other UIs have subtle quirks that
prevent a single generalized approach to work.

Ivy is almost compliant, but it needs beg and end to not be markers.

Helm doesn't replace `completion-in-region-function`, it expects to go
around the default `completion--in-region`. It's supposed to add the
advice by itself, but it's very unreliable, so we do the wrapping
manually.

Ido doesn't implement `completion-in-region` and its `completing-read`
is retricted to a list of strings as table, so we use default
`completion--in-region` with no bells or whistles.
2024-05-21 17:16:57 +02:00
Luigi Sartor Piucco
ae4ce38779
feat(corfu,vertico): use equal orderless config
This removes the old `&` separator for Vertico (does anyone use that
instead of just space?) in favor of escapable space and unifies
orderless config with Corfu. Also implements smart separator
insert/escape/reset on `C-SPC`

Co-authored-by: Liam Hupfer <liam@hpfr.net>
2024-05-21 17:16:57 +02:00
StrawberryTea
ca68e0cdee
feat(corfu): more CAPFs and ergonomy changes
Add CAPFs from cape:
- `cape-dabbrev`;
- `cape-elisp-block`;
- `cape-file`;
Fix some CAPFs via cape:
- Make non-exclusive, purified and silent `pcomplete-completions-at-point`;
- Make non-exclusive and non-interruptable `lsp-completion-at-point`;
- Make non-exclusive `eglot-completion-at-point`;
- Make non-exclusive `comint-completion-at-point`;
Fix and improve keybindings:
- Smart `DEL`;
Add depth to CAPFs, allowing ordering to be adjustable.
2024-05-21 17:16:57 +02:00
Luigi Sartor Piucco
a980695939
feat(corfu): add snippets
Yasnippet is now properly integrated! A previosly-unset default has now
been given to `corfu-on-exact-match`. With snippets, it causes immediate
expansion upon single match by default, so we set it to nil and
recommend against changing it in the README.
2024-05-21 17:16:57 +02:00
Luigi Sartor Piucco
1b6e77c664
module: add :completion corfu
This commit's primary goal is allowing use of
[Corfu](https://github.com/minad/corfu) as an alternative to
[Company](https://github.com/company-mode/company-mode). It introduces a
module under `:completion` for this purpose, plus some conditionals on
other relevant modules to toggle functionality like lsp back-ends and
[Cape](https://github.com/minad/cape) capfs for certain modes.

Other optional or miscellaneous features include:

- Corfu is enabled in the minibuffer if `completion-at-point` is bound;
- Support for displaying the completion's documentation on a secondary
  popup;
- Support for terminal display if :os tty;
- Support for icons if +icons;
2024-05-21 17:16:57 +02:00
Sean Farley
564264720c
bump: :tools magit
magit/forge@03b48be2a1 -> magit/forge@03b48be2a1
magit/magit@65ecb9c5fc -> magit/magit@65ecb9c5fc

This fixes a bug in forge (which has been fixed upstream) that
erroneously set `minibuffer-allow-text-properties' globally and caused
seemingly random errors involving completion from the minibuffer.

Ref: magit/forge#639
Ref: minad/jinx#140
2024-05-21 17:16:57 +02:00
Henrik Lissner
767ec85417
fix(eval): overlay position
Fix: #7732
Close: #7734
Co-authored-by: pysnow530 <pysnow530@users.noreply.github.com>
2024-05-21 17:16:56 +02:00
Henrik Lissner
ede4449a48
fix(java): add lsp-treemacs
lsp-java depends on lsp-treemacs without declaring it a dependency, so
lsp-users using :lang (java +lsp) users without :ui (treemacs +lsp) will
experience file-missing errors when lsp-java is loaded.
2024-05-21 17:16:56 +02:00
Sean Farley
56dd3e592f
feat(macos): osx-trash is only needed by emacs < 29 2024-05-21 17:16:56 +02:00
Henrik Lissner
838abb787e
fix(lsp): void-variable eglot-events-buffer-config
The variable was modified too early (before the package was loaded).

Amend: 5f858bb142cc
2024-05-21 17:16:55 +02:00
Henrik Lissner
b6e48e2046
fix(lsp): s/eglot-events-buffer-size/eglot-events-buffer-config/
Amend: 5f858bb142cc
2024-05-21 17:16:55 +02:00
Henrik Lissner
22955b1d49
docs(twitter): add deprecation notice
twittering-mode is non-functional and no known alternative exists.

Close: #6383
2024-05-21 17:16:55 +02:00
Henrik Lissner
8fccb94680
fix(org): only reveal point on save-place-after-find-file-hook
Prior to this change, whenever you enter an org-mode buffer, any
invisible regions around the cursor (which had been moved by save-place)
would be unfolded unconditionally. There may be cases where moving
the cursor immediately after visiting the file could cause errors (e.g.
when yasnippet tries to wrestle control over the cursor,
org-agenda-switch-to moves the cursor before switching to the buffer,
etc).

This change ensures the expansion *only* happens when save-place does
its thing (and successfully).
2024-05-21 17:16:55 +02:00
Henrik Lissner
40e9a17160
fix(format): +format-with-eglot-fn: eglot detection 2024-05-21 17:16:55 +02:00
Henrik Lissner
c0a46b3bc4
refactor(lsp): obsolete eglot-events-buffer-size
Ref: 88c46bd4db
2024-05-21 17:16:54 +02:00
Henrik Lissner
f5156be684
fix(emacs-lisp): +emacs-lisp--module-at-point: wrong-number-of-arguments error 2024-05-21 17:16:54 +02:00
Henrik Lissner
1a8afbb4ff
fix(treemacs): simplify lsp-treemacs load-order
dec058f fixed the load order between treemacs-nerd-icons and
lsp-treemacs, but lsp-treemacs still loads so late that folks will see a
theme-less Treemacs until they visit their first lsp-mode-enabled file.
This ensures that won't happen.

Amend: dec058fabb5e
Amend: #7519
2024-05-21 17:16:54 +02:00
cuithon
c068f59bd0
docs(default,mu4e,latex): fix repetition of the in docs 2024-05-21 17:16:54 +02:00
StrawberryTea
05dc179b96
fix(mu4e): advice for new mu4e release
mu4e-quit now takes an optional argument, BURY, which is a boolean that
determines whether to bury the buffer or kill it. This commit updates
the advice to reflect this change.
2024-05-21 17:16:54 +02:00
Henrik Lissner
f493992142
fix(ruby): ruby REPL w/ robe
set-repl-handler! handlers have to return a buffer.

Close: #7450
Co-authored-by: Zetagon <Zetagon@users.noreply.github.com>
2024-05-21 17:16:54 +02:00
Henrik Lissner
8fe39e333c
docs(web): correct type, mention JS comment hack, remove superfluous notice
close: #7388
2024-05-21 17:16:53 +02:00
Tim Ruffing
00b5b62bca
fix(popup): fix finding of major side window
Fix: #7647
Amend: #7598
2024-05-21 17:16:53 +02:00