Coder Social home page Coder Social logo

ex: parsing seems still broken about nextvi HOT 9 CLOSED

polluks avatar polluks commented on August 25, 2024
ex: parsing seems still broken

from nextvi.

Comments (9)

kyx0r avatar kyx0r commented on August 25, 2024

from nextvi.

kyx0r avatar kyx0r commented on August 25, 2024

from nextvi.

polluks avatar polluks commented on August 25, 2024

My strange result of "1"

-rw-r--r--  1 polluks  wheel  10 23 Jul 05:49 file1
-rw-------  1 polluks  wheel   0 23 Jul 05:49 file1␣
-rw-r--r--  1 polluks  wheel   8 23 Jul 05:49 file2
-rw-------  1 polluks  wheel   0 23 Jul 05:49 file2␣
$ cat -n file?
     1	foo | bar
     1	foo/bar

from nextvi.

kyx0r avatar kyx0r commented on August 25, 2024

from nextvi.

polluks avatar polluks commented on August 25, 2024

I see, the files are not doppelgangers but have a trailing space!

from nextvi.

kyx0r avatar kyx0r commented on August 25, 2024

So the correct command would be:
e file1|s/\|/PIPE/ | w! file1| e file2| 1 | s/\//SLASH/|wq

w! is needed here as you give it same argument will error with "file exists"
you can just use w alone, but just for the sake of being use w!.

I don't really expect production commands to have spaces between the bars, they are not necessary and ambiguous since the space would be passed into resulting ex function and its a gamble weather that function will ignore or not ignore the trailing space.

The only thing I may wanna refactor is the | escapes. I don't think its the special casing is necessary anymore, original idea was to reduce number of slashes for most common uses like \| and | but its rather hard to explain how it works. probably just 1 extra slash can make more sense. Only issue is when using commands like vr, it will not correctly auto escape the | characters, which is probably why this rule was made in the first place.

from nextvi.

kyx0r avatar kyx0r commented on August 25, 2024

You should try/test the new ex | escape syntax I committed, should be more self explanatory now.

e file1|s/\\|/PIPE/ | w! file1| e file2| 1 | s/\//SLASH/|wq

\| for |
\\| for \|
\\\| for \\|

etc...

from nextvi.

polluks avatar polluks commented on August 25, 2024

close...

$ cat -n file?
     1	PIPEfoo | bar
     1	fooSLASHbar

from nextvi.

kyx0r avatar kyx0r commented on August 25, 2024

from nextvi.

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.