Terje Larsen

Results 212 comments of Terje Larsen

I think you are on to the right path, splitting the theme into several parts should work, then you can apply in a certain order. - ui (mode line/fringe/etc) -...

I see, that certainly makes it a bit trickier. One way could be if it is invoked with an environment variable you could set the base path to be used....

I agree this would be a nice default

If you want some inspiration I do this in my config: https://github.com/terlar/emacs-config/blob/master/default.nix#L11-L27 1. I tangle the org file which results in a `init.el` and a `early-init.el`. 2. I also generate...

You could use `(thing-at-point 'word)` but I think symbol is better fit. These are the three things you are looking for: ```elisp (require 'eval-in-repl-python) (eir-python-shell-send-string (thing-at-point 'symbol)) (eir-python-shell-send-string (format "%s.info()"...

You could do something like this, it will strip all leading space from the line if that is what you are looking for. The current line eval is made to...

Another example is when using `nix-mode` which has content like this: ``` { pkgs }: { script = pkgs.writeShellScriptBin "script" '' cd ${toString ./.} echo hello ''; } ``` If...

It was tricky but I finally boiled it down to what it was, it is related to my setup and you can achieve it with the following steps: 1. M-:...

Thank you for the feedback, I will try with a different version to see if we can pinpoint this.

+1 for an option to the begin block and also to function