有没有办法改变所选行或列的显示方式?
例如,如果我选择2行文字,Vim会在状态行下面显示2
。虽然我想将其更改为Selected 2 lines
。
同样,如果我在文字中选择单词if
,Vim会再次向我显示2
。但现在,我想将其更改为Selected 2 columns
。
答案 0 :(得分:1)
它是硬编码的:唯一的方法是修改和重新编译源代码。
在Vim的来源中,请查看vecArg1
:% --- Executes on button press
function pushbtnForvecArg1_Callback(hObject, eventdata, handles)
handles.fileloc = get(handles.filelocation,'String');
fileID = fopen(handles.fileloc);
handles.vecArg1 = fscanf(fileID,'%f',inf);
assignin('base','vecArg1',handles.vecArg1);
guidata(hObject,handles)
和screen.c
:int showmode(void)