Giter VIP home page Giter VIP logo

Comments (7)

hauleth avatar hauleth commented on August 24, 2024

Why not use :w %:h/duplicate?

from vim-eunuch.

eduardoarandah avatar eduardoarandah commented on August 24, 2024

yeah, I just want the convenience of creating the file and then open it

:Duplicate copy.txt

I guess it's super easy to create the function

from vim-eunuch.

eduardoarandah avatar eduardoarandah commented on August 24, 2024

Can you help me with 3rd line?
I don't know any vimscript

the idea is type C-R then = and then expand current filename, so the user can type another filename.

function! s:duplicate()
  let n = input("Name: ")
  <C-R>=fnameescape(expand("%:p"))<CR>
  if n != ''
    execute "w " . n 
    execute "e " . n 
  endif
endfunction
:command! -bar Duplicate :call s:duplicate()

from vim-eunuch.

eduardoarandah avatar eduardoarandah commented on August 24, 2024

This function already works, but you have to type the file extension, and that's boring because extension is always the same

function! s:duplicate(name)
  if a:name != ''
    execute "w %:h/" . a:name 
    execute "e %:h/" . a:name 
  endif
endfunction
:command! -nargs=1 -bar Duplicate :call s:duplicate(<f-args>)

Use:

Duplicate copy.txt

from vim-eunuch.

hauleth avatar hauleth commented on August 24, 2024

How is that different from :saveas %:h/name?

from vim-eunuch.

eduardoarandah avatar eduardoarandah commented on August 24, 2024

How is that different from :saveas %:h/name?

Man.. that's like an alien talking.
Ease of use must be a thing before microsoft takes all developers to vscode imho

from vim-eunuch.

tpope avatar tpope commented on August 24, 2024

The word "duplicate" does not mean "create a copy in the current directory with the same extension" so I don't think it's any less alien than :saveas %:h/. I think a weirdly named command like that would be more confusing than helpful in eunuch.vim.

But by all means create one for your own use. %:e will give you the extension.

from vim-eunuch.

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.