Bozhidar Batsov
Bozhidar Batsov
> As for tabs vs. spaces, that's more of a matter of opinion (there's no official recommendation in the manual, and the Emacs source code contains a mixture of tabs...
I generally go with option 2, as then it's easy to add more non-empty elements to the bindings, but I agree that 3 & 4 definitely read better. I'm fine...
It'd be great if you can share the backtrace for this error or check in the debugger step-by-step where exactly the error originates. There are some pointers for troubleshooting here...
Doing something in the spirit of super-save might be an option as well https://github.com/bbatsov/super-save/blob/master/super-save.el#L47 Instead of relying on a hook, we can have a list of navigation commands that act...
@jtamagnan-delphix ping :-)
I recall there was some command to force a re-read of dir-locals (e.g. `(dir-locals-read-from-dir (dired-current-directory))`, so using something like this might be a solution to your problem. Not sure if...
I guess a third approach would be a command that people can manually trigger to update the cache when needed, that they can optionally use as a hook function as...
Does this help with what you're trying to achieve? ``` (global-auto-revert-mode t) ``` Projectile currently can close Projectile buffers, but there's no functionality to recreate special buffers.
I guess that's a common problem with all similar commands, as they simply prepend the project name to the buffer name. I didn't consider someone might want to several buffers...
Or maybe we can just do two separate commands like we've done in the past `projectile-run-vterm` and `projectile-run-vterm-other-window`. Probably that would be the best option.