Possible to set `foldexpr` using a function reference?Call function from string nameFunction that opens file...
Where did the extra Pym particles come from in Endgame?
Help, my Death Star suffers from Kessler syndrome!
Toggle Overlays shortcut?
Build a trail cart
Pawn Sacrifice Justification
Can a creature tell when it has been affected by a Divination wizard's Portent?
How to set the font color of quantity objects (Version 11.3 vs version 12)?
Airbnb - host wants to reduce rooms, can we get refund?
Reverse the word in a string with the same order in javascript
Is GOCE a satellite or aircraft?
Why does processed meat contain preservatives, while canned fish needs not?
Do I have to worry about players making “bad” choices on level up?
What's the polite way to say "I need to urinate"?
Minimum value of 4 digit number divided by sum of its digits
Are Boeing 737-800’s grounded?
A non-technological, repeating, visible object in the sky, holding its position in the sky for hours
Packing rectangles: Does rotation ever help?
Is it possible to Ready a spell to be cast just before the start of your next turn by having the trigger be an ally's attack?
Can I get candy for a Pokemon I haven't caught yet?
Asahi Dry Black beer can
What does YCWCYODFTRFDTY mean?
Weird result in complex limit
You look catfish vs You look like a catfish
How to figure out whether the data is sample data or population data apart from the client's information?
Possible to set `foldexpr` using a function reference?
Call function from string nameFunction that opens file for editingsystem function output with Chinese charsRunning python code in a functionIs it possible to create a function with the same name for different filetypes (and different implementations)?How do I use function to effect editing a file?Why is this function clearing screen output?How to use function returns?Add conceal in functionHow to set opfunc to a lambda function?
Got this:
let Func = function(folding_function) "folding_function is name of function
setlocal foldexpr=call(Func(v:lnum))
This is so user can set a custom function for folding in their config file. I can't get it to work, though.
Also tried:
call(Func, v:lnum)
and
call(Func, 'v:lnum')
Code in context
" Set settings which are local to a window. In a new tab they would be reset to
" Vim defaults. So we enforce our settings here when the cursor enters a
" Vimwiki buffer.
function! s:set_windowlocal_options()
if !&diff " if Vim is currently in diff mode, don't interfere with its folding
let foldmethod = vimwiki#vars#get_global('folding')
if foldmethod =~? '^expr.*'
setlocal foldmethod=expr
let custom = vimwiki#vars#get_global('custom_fold_func')
if custom
let Func = function('VimwikiFoldLevelCustom')
setlocal foldexpr=Func(v:lnum)
" setlocal foldexpr=VimwikiFoldLevelCustom(v:lnum)
else
setlocal foldexpr=VimwikiFoldLevel(v:lnum)
endif
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^list.*' || foldmethod =~? '^lists.*'
setlocal foldmethod=expr
setlocal foldexpr=VimwikiFoldListLevel(v:lnum)
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^syntax.*'
setlocal foldmethod=syntax
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^custom.*'
" do nothing
else
setlocal foldmethod=manual
normal! zE
endif
endif
if vimwiki#vars#get_global('conceallevel') && exists("+conceallevel")
let &conceallevel = vimwiki#vars#get_global('conceallevel')
endif
if vimwiki#vars#get_global('auto_chdir')
exe 'lcd' vimwiki#vars#get_wikilocal('path')
endif
endfunction
functions
|
show 6 more comments
Got this:
let Func = function(folding_function) "folding_function is name of function
setlocal foldexpr=call(Func(v:lnum))
This is so user can set a custom function for folding in their config file. I can't get it to work, though.
Also tried:
call(Func, v:lnum)
and
call(Func, 'v:lnum')
Code in context
" Set settings which are local to a window. In a new tab they would be reset to
" Vim defaults. So we enforce our settings here when the cursor enters a
" Vimwiki buffer.
function! s:set_windowlocal_options()
if !&diff " if Vim is currently in diff mode, don't interfere with its folding
let foldmethod = vimwiki#vars#get_global('folding')
if foldmethod =~? '^expr.*'
setlocal foldmethod=expr
let custom = vimwiki#vars#get_global('custom_fold_func')
if custom
let Func = function('VimwikiFoldLevelCustom')
setlocal foldexpr=Func(v:lnum)
" setlocal foldexpr=VimwikiFoldLevelCustom(v:lnum)
else
setlocal foldexpr=VimwikiFoldLevel(v:lnum)
endif
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^list.*' || foldmethod =~? '^lists.*'
setlocal foldmethod=expr
setlocal foldexpr=VimwikiFoldListLevel(v:lnum)
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^syntax.*'
setlocal foldmethod=syntax
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^custom.*'
" do nothing
else
setlocal foldmethod=manual
normal! zE
endif
endif
if vimwiki#vars#get_global('conceallevel') && exists("+conceallevel")
let &conceallevel = vimwiki#vars#get_global('conceallevel')
endif
if vimwiki#vars#get_global('auto_chdir')
exe 'lcd' vimwiki#vars#get_wikilocal('path')
endif
endfunction
functions
tryFunc(v:lnum)
– dedowsdi
3 hours ago
with or withoutcall
?
– StevieD
3 hours ago
without call, don't need it.
– dedowsdi
3 hours ago
Hmm, no dice. Also tried to simplify things:let Func = function('VimwikiFoldLevelCustom') setlocal foldexpr=Func(v:lnum)
– StevieD
3 hours ago
2
trylet g:Func = function('VimwikiFoldLevelCustom')
– dedowsdi
1 hour ago
|
show 6 more comments
Got this:
let Func = function(folding_function) "folding_function is name of function
setlocal foldexpr=call(Func(v:lnum))
This is so user can set a custom function for folding in their config file. I can't get it to work, though.
Also tried:
call(Func, v:lnum)
and
call(Func, 'v:lnum')
Code in context
" Set settings which are local to a window. In a new tab they would be reset to
" Vim defaults. So we enforce our settings here when the cursor enters a
" Vimwiki buffer.
function! s:set_windowlocal_options()
if !&diff " if Vim is currently in diff mode, don't interfere with its folding
let foldmethod = vimwiki#vars#get_global('folding')
if foldmethod =~? '^expr.*'
setlocal foldmethod=expr
let custom = vimwiki#vars#get_global('custom_fold_func')
if custom
let Func = function('VimwikiFoldLevelCustom')
setlocal foldexpr=Func(v:lnum)
" setlocal foldexpr=VimwikiFoldLevelCustom(v:lnum)
else
setlocal foldexpr=VimwikiFoldLevel(v:lnum)
endif
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^list.*' || foldmethod =~? '^lists.*'
setlocal foldmethod=expr
setlocal foldexpr=VimwikiFoldListLevel(v:lnum)
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^syntax.*'
setlocal foldmethod=syntax
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^custom.*'
" do nothing
else
setlocal foldmethod=manual
normal! zE
endif
endif
if vimwiki#vars#get_global('conceallevel') && exists("+conceallevel")
let &conceallevel = vimwiki#vars#get_global('conceallevel')
endif
if vimwiki#vars#get_global('auto_chdir')
exe 'lcd' vimwiki#vars#get_wikilocal('path')
endif
endfunction
functions
Got this:
let Func = function(folding_function) "folding_function is name of function
setlocal foldexpr=call(Func(v:lnum))
This is so user can set a custom function for folding in their config file. I can't get it to work, though.
Also tried:
call(Func, v:lnum)
and
call(Func, 'v:lnum')
Code in context
" Set settings which are local to a window. In a new tab they would be reset to
" Vim defaults. So we enforce our settings here when the cursor enters a
" Vimwiki buffer.
function! s:set_windowlocal_options()
if !&diff " if Vim is currently in diff mode, don't interfere with its folding
let foldmethod = vimwiki#vars#get_global('folding')
if foldmethod =~? '^expr.*'
setlocal foldmethod=expr
let custom = vimwiki#vars#get_global('custom_fold_func')
if custom
let Func = function('VimwikiFoldLevelCustom')
setlocal foldexpr=Func(v:lnum)
" setlocal foldexpr=VimwikiFoldLevelCustom(v:lnum)
else
setlocal foldexpr=VimwikiFoldLevel(v:lnum)
endif
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^list.*' || foldmethod =~? '^lists.*'
setlocal foldmethod=expr
setlocal foldexpr=VimwikiFoldListLevel(v:lnum)
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^syntax.*'
setlocal foldmethod=syntax
setlocal foldtext=VimwikiFoldText()
elseif foldmethod =~? '^custom.*'
" do nothing
else
setlocal foldmethod=manual
normal! zE
endif
endif
if vimwiki#vars#get_global('conceallevel') && exists("+conceallevel")
let &conceallevel = vimwiki#vars#get_global('conceallevel')
endif
if vimwiki#vars#get_global('auto_chdir')
exe 'lcd' vimwiki#vars#get_wikilocal('path')
endif
endfunction
functions
functions
edited 1 hour ago
StevieD
asked 4 hours ago
StevieDStevieD
493313
493313
tryFunc(v:lnum)
– dedowsdi
3 hours ago
with or withoutcall
?
– StevieD
3 hours ago
without call, don't need it.
– dedowsdi
3 hours ago
Hmm, no dice. Also tried to simplify things:let Func = function('VimwikiFoldLevelCustom') setlocal foldexpr=Func(v:lnum)
– StevieD
3 hours ago
2
trylet g:Func = function('VimwikiFoldLevelCustom')
– dedowsdi
1 hour ago
|
show 6 more comments
tryFunc(v:lnum)
– dedowsdi
3 hours ago
with or withoutcall
?
– StevieD
3 hours ago
without call, don't need it.
– dedowsdi
3 hours ago
Hmm, no dice. Also tried to simplify things:let Func = function('VimwikiFoldLevelCustom') setlocal foldexpr=Func(v:lnum)
– StevieD
3 hours ago
2
trylet g:Func = function('VimwikiFoldLevelCustom')
– dedowsdi
1 hour ago
try
Func(v:lnum)
– dedowsdi
3 hours ago
try
Func(v:lnum)
– dedowsdi
3 hours ago
with or without
call
?– StevieD
3 hours ago
with or without
call
?– StevieD
3 hours ago
without call, don't need it.
– dedowsdi
3 hours ago
without call, don't need it.
– dedowsdi
3 hours ago
Hmm, no dice. Also tried to simplify things:
let Func = function('VimwikiFoldLevelCustom') setlocal foldexpr=Func(v:lnum)
– StevieD
3 hours ago
Hmm, no dice. Also tried to simplify things:
let Func = function('VimwikiFoldLevelCustom') setlocal foldexpr=Func(v:lnum)
– StevieD
3 hours ago
2
2
try
let g:Func = function('VimwikiFoldLevelCustom')
– dedowsdi
1 hour ago
try
let g:Func = function('VimwikiFoldLevelCustom')
– dedowsdi
1 hour ago
|
show 6 more comments
1 Answer
1
active
oldest
votes
The value of the foldexpr
option is evaluated to get the foldlevel of a line. You don't need to add extra call
to it. You can copy following code in a new file and source it to check how it works.
" vim:set foldmethod=expr noexpandtab:
function! FoldingFunction(lnum)
return getline(v:lnum)[0]==#"t"
endfunction
let Func = function('FoldingFunction') "FoldingFunction is name of function
setlocal foldexpr=Func(v:lnum)
finish
fold
fold
fold
fold
fold
update
Your code doesn't work because your Func
is a function local variable, change it to g:Func
fix the problem.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "599"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fvi.stackexchange.com%2fquestions%2f19782%2fpossible-to-set-foldexpr-using-a-function-reference%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The value of the foldexpr
option is evaluated to get the foldlevel of a line. You don't need to add extra call
to it. You can copy following code in a new file and source it to check how it works.
" vim:set foldmethod=expr noexpandtab:
function! FoldingFunction(lnum)
return getline(v:lnum)[0]==#"t"
endfunction
let Func = function('FoldingFunction') "FoldingFunction is name of function
setlocal foldexpr=Func(v:lnum)
finish
fold
fold
fold
fold
fold
update
Your code doesn't work because your Func
is a function local variable, change it to g:Func
fix the problem.
add a comment |
The value of the foldexpr
option is evaluated to get the foldlevel of a line. You don't need to add extra call
to it. You can copy following code in a new file and source it to check how it works.
" vim:set foldmethod=expr noexpandtab:
function! FoldingFunction(lnum)
return getline(v:lnum)[0]==#"t"
endfunction
let Func = function('FoldingFunction') "FoldingFunction is name of function
setlocal foldexpr=Func(v:lnum)
finish
fold
fold
fold
fold
fold
update
Your code doesn't work because your Func
is a function local variable, change it to g:Func
fix the problem.
add a comment |
The value of the foldexpr
option is evaluated to get the foldlevel of a line. You don't need to add extra call
to it. You can copy following code in a new file and source it to check how it works.
" vim:set foldmethod=expr noexpandtab:
function! FoldingFunction(lnum)
return getline(v:lnum)[0]==#"t"
endfunction
let Func = function('FoldingFunction') "FoldingFunction is name of function
setlocal foldexpr=Func(v:lnum)
finish
fold
fold
fold
fold
fold
update
Your code doesn't work because your Func
is a function local variable, change it to g:Func
fix the problem.
The value of the foldexpr
option is evaluated to get the foldlevel of a line. You don't need to add extra call
to it. You can copy following code in a new file and source it to check how it works.
" vim:set foldmethod=expr noexpandtab:
function! FoldingFunction(lnum)
return getline(v:lnum)[0]==#"t"
endfunction
let Func = function('FoldingFunction') "FoldingFunction is name of function
setlocal foldexpr=Func(v:lnum)
finish
fold
fold
fold
fold
fold
update
Your code doesn't work because your Func
is a function local variable, change it to g:Func
fix the problem.
edited 54 mins ago
answered 2 hours ago
dedowsdidedowsdi
70849
70849
add a comment |
add a comment |
Thanks for contributing an answer to Vi and Vim Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fvi.stackexchange.com%2fquestions%2f19782%2fpossible-to-set-foldexpr-using-a-function-reference%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
try
Func(v:lnum)
– dedowsdi
3 hours ago
with or without
call
?– StevieD
3 hours ago
without call, don't need it.
– dedowsdi
3 hours ago
Hmm, no dice. Also tried to simplify things:
let Func = function('VimwikiFoldLevelCustom') setlocal foldexpr=Func(v:lnum)
– StevieD
3 hours ago
2
try
let g:Func = function('VimwikiFoldLevelCustom')
– dedowsdi
1 hour ago