projectile
hydra
projectile | hydra | |
---|---|---|
31 | 33 | |
3,997 | 1,849 | |
- | - | |
7.1 | 0.0 | |
2 days ago | 3 months ago | |
Emacs Lisp | Emacs Lisp | |
GNU General Public License v3.0 only | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
projectile
-
Fuzzy Finding with Emacs Instead of Fzf
Could you explain more about this setup? I'm not familiar with "projectile". Is this https://github.com/bbatsov/projectile the same thing you're referring to?
Sounds interesting. What I've done recently is open my vim in the folder that contains all the organization's repos (the ones I've cloned) and just run ripgrep inside vim to find examples or references to whatever I've seeking. Seems performant enough even without doing anything except letting ripgrep ignore git-ignored stuff (default behavior of ripgrep).
-
Emacs: Projectile - Multiple Projects
Sure. It sounds like it's working well enough. Here's a Github issue that may be of interest to you. Apparently you can get this behavior if there's a project marker file at a higher level.
-
Project-global building/running/etc
With projectile you can define custom "run", "compile", "test" commands per project. Also there are pre-defined commands for many known project types.
-
Two projects side by side?
Thanks for your detailed explanation, but no that is no that is not the question. This is projectile: https://github.com/bbatsov/projectile
-
Multi project management - perspective, persp-mode, tab-bar-mode, or...?
I am currently trying with perspective rather than persp-mode, as it segregates the buffer list as I like (#1 above). I've got projectile with persp-projectile, and that seems to give me what I need for project navigation (#2 probably, still not 100%). I get some help in my mode line for project focus (#3, partially).
- Projectile 2.7 has been released
- Projectile 2.7 is out!
- Release Projectile 2.6
- Projectile 2.6
- Projectile 2.6 released!
hydra
-
Modeless Vim
You can also use Hydra for Emacs.[1] Once I discovered how to configure Hydra, I made it a habit to make one for every new major mode I need to use.
[1] https://github.com/abo-abo/hydra
- Devil Mode for Emacs
-
Alternative terminal compatible keybinding for C-S-<arrow up>
Have you considered a hydra?
-
Can you explain the power of emacs please?
An Emacs specific example: I'm working on a few go projects at the moment and go requires recompilation after changes. Step one was finding auto-recompilers for my projects (I'm using both air and reflex in various projects). Step two was realizing that I spent a lot of time switching to the buffer where the output is printed, so I wrote a little hydra menu to make that easier. Then I found myself having to restart those processes each time I restarted Emacs, so I went digging and found detached to manage the processes. Then I got tired of having to hunt for where the detached output was displayed in my frame so dug into sidebars to manage the windows more effectively.
-
Is it possible to make god-mode turn off automatically after a command?
I think the goal of the hydra package is to provide such functionality.
-
Non-evil users: what modifiers do you use on emacs?
I would I also encourage anyone who does not want to use modal editing to look into repeat-mode, hydras, and key-chord.
-
Newbie question: What is a good strategy for personal keybindings to avoid conflicts, including with packages installed later on?
The C-c prefix is designed for you, the user, to use for your nefarious deeds. Some things that may help with both binding and knowing what key does what would be a menu such as hydras or transient menus (which apparently are part of Emacs now so that's new).
-
Too many keybindings
For the very same reason, I started to use hydras: https://github.com/abo-abo/hydra - see my config at https://github.com/novoid/dot-emacs/blob/master/config.org
-
How usable is Emacs with its default keybindings?
Hydra lets you define mini-modes with limited scope.
-
A good config with leader keys
general.el also works well with hydra.el. Here's my hydra for window operations - it activates when I press ,w:
What are some alternatives?
neovim-session-manager - A simple wrapper around :mksession.
emacs-which-key - Emacs package that displays available keybindings in popup
treemacs
vim-submode - Vim plugin: Create your own submodes
telescope-project.nvim
smartparens - Minor mode for Emacs that deals with parens pairs and tries to be smart about it.
emacs-inspector - Inspection tool for Emacs Lisp objects.
vim-hydra - Plugin similar to abo-abo's emacs hydra plugin
project.nvim - The superior project management solution for neovim.
multiple-cursors.el - Multiple cursors for emacs.
perspective-el - Perspectives for Emacs.
key-chord - Map pairs of simultaneously pressed keys to commands