How can I use the return value of a function in a :set command?










2















I want to set an option to a string containing full path of current working directory. For example



set tags=getcwd()."tags" " retrieve the full path of the tags file in current workding directory 


However, vim seems only accept expansion for let variables, it don't expand the function in set context.



Is there way to achieve expand things in set?










share|improve this question




























    2















    I want to set an option to a string containing full path of current working directory. For example



    set tags=getcwd()."tags" " retrieve the full path of the tags file in current workding directory 


    However, vim seems only accept expansion for let variables, it don't expand the function in set context.



    Is there way to achieve expand things in set?










    share|improve this question


























      2












      2








      2








      I want to set an option to a string containing full path of current working directory. For example



      set tags=getcwd()."tags" " retrieve the full path of the tags file in current workding directory 


      However, vim seems only accept expansion for let variables, it don't expand the function in set context.



      Is there way to achieve expand things in set?










      share|improve this question
















      I want to set an option to a string containing full path of current working directory. For example



      set tags=getcwd()."tags" " retrieve the full path of the tags file in current workding directory 


      However, vim seems only accept expansion for let variables, it don't expand the function in set context.



      Is there way to achieve expand things in set?







      variables set






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 16 '18 at 11:43









      Rich

      15.2k12066




      15.2k12066










      asked Nov 16 '18 at 7:42









      Eric SunEric Sun

      182




      182




















          1 Answer
          1






          active

          oldest

          votes


















          9














          You can use :let with Vim options as well, by prefixing the option name with a & sigil; cp. :help :let-option



          let &tags = getcwd().'tags'


          Note that the literal string must be in single quotes (or the backslash doubled); else, the t will expand to a tab character.




          The other way would be by using :execute, but then you'd have to take care of escaping, so this is not recommended:



          execute 'set tags='.escape(getcwd(), ' ').'tags'





          share|improve this answer























            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
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fvi.stackexchange.com%2fquestions%2f17982%2fhow-can-i-use-the-return-value-of-a-function-in-a-set-command%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









            9














            You can use :let with Vim options as well, by prefixing the option name with a & sigil; cp. :help :let-option



            let &tags = getcwd().'tags'


            Note that the literal string must be in single quotes (or the backslash doubled); else, the t will expand to a tab character.




            The other way would be by using :execute, but then you'd have to take care of escaping, so this is not recommended:



            execute 'set tags='.escape(getcwd(), ' ').'tags'





            share|improve this answer



























              9














              You can use :let with Vim options as well, by prefixing the option name with a & sigil; cp. :help :let-option



              let &tags = getcwd().'tags'


              Note that the literal string must be in single quotes (or the backslash doubled); else, the t will expand to a tab character.




              The other way would be by using :execute, but then you'd have to take care of escaping, so this is not recommended:



              execute 'set tags='.escape(getcwd(), ' ').'tags'





              share|improve this answer

























                9












                9








                9







                You can use :let with Vim options as well, by prefixing the option name with a & sigil; cp. :help :let-option



                let &tags = getcwd().'tags'


                Note that the literal string must be in single quotes (or the backslash doubled); else, the t will expand to a tab character.




                The other way would be by using :execute, but then you'd have to take care of escaping, so this is not recommended:



                execute 'set tags='.escape(getcwd(), ' ').'tags'





                share|improve this answer













                You can use :let with Vim options as well, by prefixing the option name with a & sigil; cp. :help :let-option



                let &tags = getcwd().'tags'


                Note that the literal string must be in single quotes (or the backslash doubled); else, the t will expand to a tab character.




                The other way would be by using :execute, but then you'd have to take care of escaping, so this is not recommended:



                execute 'set tags='.escape(getcwd(), ' ').'tags'






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 16 '18 at 8:32









                Ingo KarkatIngo Karkat

                11.9k2739




                11.9k2739



























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fvi.stackexchange.com%2fquestions%2f17982%2fhow-can-i-use-the-return-value-of-a-function-in-a-set-command%23new-answer', 'question_page');

                    );

                    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







                    Popular posts from this blog

                    Top Tejano songwriter Luis Silva dead of heart attack at 64

                    ReactJS Fetched API data displays live - need Data displayed static

                    政党