Code Monkey home page Code Monkey logo

Comments (3)

hankertrix avatar hankertrix commented on July 17, 2024

The remap that the Primeagen has:

vim.keymap.set("n", "<leader>s", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]])

Is nearly exactly the same as your remap:

vim.keymap.set("n", "<leader>*", ":%s/\\<<C-r><C-w>\\>//g<left><left>")

Except for how it starts replacing the word. The Primagen’s remap will keep the word so you can simply use <Backspace> to edit the word.

You can see that the word is repeated in the substitution section in the produced Vim command:

:%s/\<little\>/little/gI

Which simply means the word is kept and you can edit it instead of typing the whole word out, unlike yours where the entire word is deleted and you have to type a new word, because in the produced command for yours, the word isn’t repeated in the substitution section:

:%s/\<little\>//g

Another minor difference between your remap and the Primagen’s remap is that his replacement is case sensitive, as his has an I flag at the end of the command.



I'm not sure what this does as I've not seen the double open and closing brackets before.

The [[ and ]] creates a multi line raw string in Lua. This means that every character is as it is, and backslashes don’t have any special meaning like in \n and hence don’t have to be escaped. To add a new line to the string, you simply add a new line.



Using your video "Neovim from Scratch" I have since had to replace the backslashes
with escaped backslashes. I am guessing this has something to do with lua, as
my old-school init.vim file did not have the escaped backslashes.

That is correct, since you’re using regular strings in Lua instead of raw strings (you’re using double quotes for your strings), which would mean you’d have to escape the backslashes.

from init.lua.

itsf4llofstars avatar itsf4llofstars commented on July 17, 2024

Thanks so much for this great explanation. I have looked at the differences between our two mappings and fully understand them now. Although I do like the blank space between forward slashes (where prime has the word and uses backspace) I am adopting the brackets and capital I. You have answered all my issues thanks. I'm going to close this issue with comment, still a bit new to issues and closing my own, so hope this is correct.

cheers;
itsf4llofstars

from init.lua.

hankertrix avatar hankertrix commented on July 17, 2024

No worries! Glad to be of help to you!

from init.lua.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.