-
-
Notifications
You must be signed in to change notification settings - Fork 107
mapping problem with commandline and search / #76
Comments
Hey, that's because Doom sets the |
Aaha that makes sense then |
Can i pass a fourth arg table with silent=false or does this have to be modified inside of doom core first? |
Hi, you will need to do it yourself at the moment, but I'll implement it in a very near future! You will need to modify this lua/doom/core/functions/init.lua block a bit, basically removing the elseif scope == 'mappings' then
for _, map in ipairs(settings_tbl) do
-- scope, lhs, rhs, options
utils.map(map[1], map[2], map[3], map[4] and map[4] or {})
end and you will be able to pass your custom options for your mappings (see Side note: the |
yes I think that would be a great idea. another example that doesn't work also is for using the 'map' keyword
Thanks man for the direction! I will try to get it to work. brb!! |
Do you mean
No problem, glad to help. Hope it works for you! :) |
Allright cool I am going to read the nvim api docs and make sure i understand. |
hey are you thinking about including |
@molleweide Hey, yeah and it's already implemented in the development branch :) |
very nice! i have to check out the develp branch. |
I'll be closing this because the feature was already implemented in the development version so I can have a better track of the next version milestone 🙂 |
Hi again,
I try this binding
and it does work but the command line is not being shown upon pressing
;
now.so the command works but it just doesn't show on the first key press / or initial
;
.Does this only happen to me?
And it is the same with
/
search commands also.If I press
/
nothing shows but I know that the command works under the hood.The text was updated successfully, but these errors were encountered: