[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/julia-mode d52cb3e885 10/22: Provide alternative to indent
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/julia-mode d52cb3e885 10/22: Provide alternative to indent-for-tab-command for use with company |
Date: |
Thu, 4 May 2023 11:00:52 -0400 (EDT) |
branch: elpa/julia-mode
commit d52cb3e8855c1b0926034312b76475f923570ddc
Author: Adam Beckmeyer <adam_gpg@thebeckmeyers.xyz>
Commit: Adam Beckmeyer <adam_gpg@thebeckmeyers.xyz>
Provide alternative to indent-for-tab-command for use with company
See comments for reasoning. This commit allows company-mode users to
comfortably press TAB
for completion of latex codes to unicode symbols. Previously,
indent-for-tab-command would
fallback to emacs' native completion UI instead of using company.
This commit also contains a slight cleanup to make the :exit-function more
robust to the
condition where abbrev-symbol fails.
---
julia-mode.el | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/julia-mode.el b/julia-mode.el
index f944dad284..466a547efc 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -38,6 +38,7 @@
(require 'cl-lib)
(require 'julia-mode-latexsubs)
+(eval-when-compile (require 'subr-x))
(defvar julia-mode-hook nil)
@@ -868,11 +869,24 @@ buffer where the LaTeX symbol starts."
;; `ivy-mode' always calls `:exit-function' with `sole' and not
`finished' (see
;; <https://github.com/abo-abo/swiper/issues/2345>). Instead of
automatic
;; expansion, user can either enable `abbrev-mode' or call
`expand-abbrev'.
- (when (eq status 'finished)
- (abbrev-insert (abbrev-symbol name julia-latexsub-abbrev-table) name
- beg (point))))
+ (when-let (((eq status 'finished))
+ (symb (abbrev-symbol name julia-latexsub-abbrev-table)))
+ (abbrev-insert symb name beg (point))))
#'ignore))
+;; company-mode doesn't work via `indent-for-tab-command'. In order to have a
consistent
+;; completion UI, we must dynamically choose between
`company-indent-or-complete-common' and
+;; `indent-for-tab-command' based on whether `company-mode' is active.
+(with-eval-after-load 'company
+ (defun julia-company-indent-for-tab-command (arg)
+ "Call `indent-for-tab-command' or `company-indent-or-complete-common' as
appropriate."
+ (interactive "P")
+ (if company-mode
+ (company-indent-or-complete-common arg)
+ (indent-for-tab-command arg)))
+ (define-key julia-mode-map [remap indent-for-tab-command]
+ #'julia-company-indent-for-tab-command))
+
;; Math insertion in julia. Use it with
;; (add-hook 'julia-mode-hook 'julia-math-mode)
;; (add-hook 'inferior-julia-mode-hook 'julia-math-mode)
- [nongnu] elpa/julia-mode updated (a20367f282 -> 7e301f4414), ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode 8078bb9d88 01/22: Add completion-at-point functions for completing LaTeX strings, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode 307b4afa9a 03/22: Create julia-mode-abbrev-table filled with latexsub abbrevs, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode d52cb3e885 10/22: Provide alternative to indent-for-tab-command for use with company,
ELPA Syncer <=
- [nongnu] elpa/julia-mode 77ff4f1146 15/22: comment code, fix docstring width, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode d684bf172a 17/22: further byte compilation docstring warning fixes, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode 759e8a8e57 18/22: Merge branch 'master' into tp/find-latexsub-end, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode c87949315f 02/22: Remove hack for indentation in strings, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode 4d2047666f 04/22: Remove old latexsub implementation, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode 0160fecf90 05/22: Override TAB to do completion in julia-mode buffers, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode f92227a87f 09/22: Fix whitespace, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode f359fd01c5 12/22: Add predicate to "around" latex symbol completion, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode 347c5c11c5 14/22: cleanup tests, bit more verbose to compare matched string, ELPA Syncer, 2023/05/04
- [nongnu] elpa/julia-mode 74e13dc460 16/22: use cl-flet, ELPA Syncer, 2023/05/04