Vim extension #

I use vim and perforce on a daily basis

Now my problem is that from vim in command mode if I want to check the version of the perforce file

:! p4 print file # 1

vim is trying to get me buffer # 1. Is there a way to disable the vim extension

Any suggestions Thanks in advance

+4
source share
1 answer

Run # with a backslash :!p4 print file\#1

+7
source

Source: https://habr.com/ru/post/1397228/


All Articles