natecraddock / workspaces.nvim

a simple plugin to manage workspace directories in neovim
MIT License
309 stars 15 forks source link

Rename problem #33

Closed scippio closed 5 months ago

scippio commented 6 months ago

How I can rename my workspace from something like "name" to: "newname - [category]" etc.? It can't take spaces etc...

natecraddock commented 5 months ago

Hey! You should be able to do this by using a backslash to escape the space when renaming a workspace.

:WorkspaceRename name name\ with\ spaces

Would rename "name" to "name with spaces"

scippio commented 5 months ago

It's not working... but I realized I need more sophisticated plugin, so I started write my own. You can close it here or something... thanks :)

natecraddock commented 5 months ago

Interesting. It works for me. Good luck on your plugin!