![]() |
vim - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: vim (/thread-30873.html) |
vim - tdwinfre - Nov-11-2020 Once I paste name of my version file name in my version file how do I exit the screen once I paste it in. I'm having issues getting back to my shell I'm stuck with my version file name and all the lines below it not able get back to the shell. RE: vim - perfringo - Nov-11-2020 (Nov-11-2020, 07:31 AM)tdwinfre Wrote: Once I paste name of my version file name in my version file how do I exit the screen once I paste it in. I'm having issues getting back to my shell I'm stuck with my version file name and all the lines below it not able get back to the shell. Please phrase your problem in a way that it is understandable what are you doing and what is your objective. To enter current filename in Vim use CTRL-R % . This works both in insert mode as well as in command mode. To enter current filename in normal mode use "%p (after the cursor) or "%P (before cursor)
RE: vim - tdwinfre - Nov-11-2020 My issue is I'm trying to get out of my python version file I have created. Once I paste the name of my version in the file how do I get back to my terminal. RE: vim - ndc85430 - Nov-11-2020 :q should quit if you're in the "normal" mode (i.e. you're not editing), or :q! if you need to write the file on quitting.
RE: vim - perfringo - Nov-12-2020 (Nov-11-2020, 04:31 PM)ndc85430 Wrote: :q! is 'quit without saving'; if one wants to save file it should be either :x ('write if buffer has changed and quit') or :wq ('write and quit')
|