This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-05
Channels
- # adventofcode (419)
- # aleph (8)
- # aws (6)
- # beginners (148)
- # boot (9)
- # cider (24)
- # cljs-dev (37)
- # cljsjs (8)
- # clojure (134)
- # clojure-android (6)
- # clojure-brasil (15)
- # clojure-dev (8)
- # clojure-dusseldorf (2)
- # clojure-greece (67)
- # clojure-italy (8)
- # clojure-japan (3)
- # clojure-russia (3)
- # clojure-spec (8)
- # clojure-uk (13)
- # clojurescript (54)
- # clojurex (6)
- # cursive (5)
- # data-science (12)
- # datomic (15)
- # defnpodcast (11)
- # emacs (25)
- # fulcro (95)
- # graphql (3)
- # lein-figwheel (1)
- # leiningen (27)
- # luminus (1)
- # lumo (6)
- # mount (2)
- # off-topic (112)
- # om (3)
- # onyx (24)
- # perun (3)
- # re-frame (20)
- # reagent (1)
- # reitit (2)
- # ring-swagger (13)
- # rum (10)
- # shadow-cljs (45)
- # spacemacs (24)
- # sql (2)
- # unrepl (78)
- # yada (1)
Anyone having issues with spacemacs throwing this error
Debugger entered--Lisp error: (file-error "Cannot open load file" "No such file or directory" "up-core")
require(up-core)
eval-buffer(#<buffer *load*-21701> nil "/Users/me/.emacs.d/elpa/use-package-20171203.1313/use-package.el" nil t) ; Reading at buffer position 1691
load-with-code-conversion("/Users/me/.emacs.d/elpa/use-package-20171203.1313/use-package.el" "/Users/me/.emacs.d/elpa/use-package-20171203.1313/use-package.el" nil t)
require(use-package)
spacemacs-bootstrap/init-use-package()
This is a fresh clone of spacemacs with a newly generated .spacemacs fileuse-package is broken. use melpa-stable. the easiest way is to switch to develop branch of spacemacs and set dotspacemap-use-spacelpa to t
I'm using Spacemacs and have a working .eslintrc on a sample React App. When I invoke checking on a .js file, I expect it to list the issues present, but instead, it suggests that javascript-eslint is disabled, although enable-able: Syntax checkers for buffer App.js in react-mode: javascript-eslint (disabled) - may enable: yes - executable: Found at /Users/will/src/learning/eslint-with-react/node_modules/.bin/eslint - config file: found . I'm obviously being stupid, what am I missing? I've read the flycheck documentation but can't get my head around this configuration.
everytime I delete something using the d
command, hitting p
will undo my delete command instead of pasting what I copied from my OS
I believe evil has these built in, but I'm not exactly sure how to make sure your clip register and kill register aren't the same
@alexkeyes in other words, it is pasting what's at the top of your kill ring -- which is the thing you just deleted.
You could also cycle through your kill ring to get to the previous thing (after you p
). I forget the default binding for that, but each time you hit it it'll switch the pasted text to the next earliest thing.
This looks decent: https://emacs-fu.blogspot.com/2009/01/using-registers.html
eg https://www.reddit.com/r/emacs/comments/58lf3o/in_evil_mode_how_can_i_prevent_adding_to_the_kill/
Personally I rely less on the kill ring than on an OS-level register-history app -- CopyClip on Mac, CopyQ on Linux.
thanks for the info @eggsyntax!