This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-07-12
Channels
- # announcements (2)
- # beginners (36)
- # boot (6)
- # calva (2)
- # cider (18)
- # clj-kondo (1)
- # cljdoc (2)
- # cljs-dev (2)
- # clojure (130)
- # clojure-boston (1)
- # clojure-brasil (3)
- # clojure-czech (1)
- # clojure-europe (11)
- # clojure-italy (4)
- # clojure-losangeles (37)
- # clojure-nl (9)
- # clojure-seattle (2)
- # clojure-sweden (8)
- # clojure-uk (23)
- # clojurescript (13)
- # core-async (21)
- # cursive (13)
- # data-science (6)
- # datomic (12)
- # emacs (36)
- # figwheel-main (9)
- # fulcro (76)
- # juxt (2)
- # keechma (18)
- # leiningen (4)
- # off-topic (13)
- # pedestal (37)
- # re-frame (21)
- # reitit (2)
- # shadow-cljs (78)
- # spacemacs (23)
- # sql (13)
- # tools-deps (25)
- # uncomplicate (4)
- # unrepl (1)
- # vim (27)
I have proposed two new PR's for Clojure layer keybindings in Spacemacs. Please add a positive reaction or comment on each GitHub PR if you are okay with them being added (it makes it more likely they will get merged into develop). Thank you. https://github.com/syl20bnr/spacemacs/pull/12520
Things are (allegedly) better in threes, so here is a third PR for the Clojure layer in Spacemacs. This time making a keybinding for the improved find definion wrapper added several months earlier. https://github.com/syl20bnr/spacemacs/pull/12525
I have dotspacemacs-line-numbers nil
but they line numbers are still showing up. If I go into a buffer and toggle the line numbers on then I get two columns of line numbers. Turning it off makes it go back to one column. How can I fix this/
@mario.cordova.862 Switching off line numbers needs a restart Emacs for line number changes to take effect. Just doing SPC f e R
is not enough.
If you have restarted Emacs, my guess is you have line numbers set somewhere else.
I am running the latest develop
branch (just updated a few hours ago) and switching line numbers off worked after a restart of Emacs.
If you are on Spacemacs master
branch, their could be a bug, but I do not know, sorry.
It works in master but develop is where the issue is happening. I did a restart and same thing. I guess Ill just go back to master
I noticed that in /layers/+spacemacs/spacemacs-defaults/packages.el
in the (defun spacemacs-defaults/init-display-line-nubers () ..)
function I see this
(cond ((spacemacs/visual-line-numbers-p)
(setq display-line-numbers-type 'visual))
((spacemacs/relative-line-numbers-p)
(setq display-line-numbers-type 'relative))
(setq display-line-numbers-type t)))
If I read the elisp correctly, that is just setting the kind of line numbers. As you are setting it to nil in your .spacemacs
file, then none of those conditions would be matched
do the line number toggle functions work?
SPC t n
SPC t r
should switch line numbers off/on straight away
@mario.cordova.862 if its not a stray setting in .spacemacs
or .spacemacs.d
, it could be in a package you added (but now I am grasping at answers)