Fork me on GitHub
#emacs
<
2019-06-08
>
Daouda04:06:12

Hey Folks, can you tell me or point me a documentation about how to use namespaces organizer nsorg on emacs?

Daouda22:06:38

Hey Folks, how can I control emacs frames sizes?

didibus22:06:20

You should be able to like any other program.

didibus22:06:35

Using your OS maximize, minimize, resize features

didibus22:06:44

Or you have a different idea?

ag22:06:53

@quieterkali programmatically? (set-frame-position ,,,) (set-frame-size ,,,)

Daouda22:06:33

i means with short keys

Daouda22:06:11

actually i have several frame and wanted to resize them according to my needs

Daouda22:06:24

but don`t know if that is possible

Daouda22:06:12

thank you very much @ag

eval-on-point22:06:00

Hi all, does anyone know off the top of their heads if the deprecated figwheel is completely non-functional with current versions of cider?

dpsutton22:06:21

It’s fine

dpsutton22:06:57

Assuming you mean lein figwjeel?

eval-on-point23:06:28

yeah rather than figwheel main

eval-on-point23:06:29

I'm following a tutorial and there must be something wrong in the project.clj or some incompatibility on my end. I just saw this in the figwheel wiki and thought someone might know something here: "Note: the following instructions don't work for cider 0.18 and was likely working for previous versions. Use with caution." I will look more into it when I have some free time. Thanks!

dotemacs12:06:47

Not sure what you’re doing exactly, but there’s a good chance that your version of nREPL and and nREPL middleware for figwheel don’t match. Start from that. I just had a look and if it’s this section: https://github.com/bhauman/lein-figwheel/wiki/Using-the-Figwheel-REPL-within-NRepl#detailed-and-automated-setup-does-not-work-in-all-versions Then that write up is a bit outdated. The current stable CIDER is 0.21. See: https://github.com/clojure-emacs/cider/releases/tag/v0.21.0 I’d say that you’d definitely want to follow their general advice, but for melpa-stable use this URL instead. When it talks about cider/piggieback, use the latest version 0.4.0. And where it talks about lein-figwheel, make sure that this version matches figwheel-sidecar, which is 0.5.18 right now.

eval-on-point23:06:47

Thank you so much! Moving to melpa stable did the trick.

Daouda23:06:36

hey Folks, is there something for auto-import in emacs for clojure project?

Daouda23:06:12

Hey it’s me again 🙂, what can i use to navigate between function declaration or usage in clojure project?

didibus23:06:55

You need to use clj-refactor

didibus23:06:08

It has a cljr-find-usage command

didibus23:06:23

Which lists all usage of the symbol at point (under cursor)

didibus23:06:50

And to navigate from a usage point to the declaration you can use jump-to-definition

didibus23:06:38

M-. is shortcut for go to definition

Daouda23:06:01

Thank you very much

didibus00:06:18

You should also have a menu for CIDER, which lists a lot of the options