What is the format of the default statusline?vim/emacs plugin to view recursive grep search search results?How to set the bash display to not show the vim text after exit?Can not edit .vimrc fileHow can I constantly see the current filename in vim?Show status lines of vim and tmux on the same linevim: hide first n letters of all lines in a fileSet default permissions by file type (at least in Vim)Set the bash display [while using GNU Screen utility] to not show the vim text after exitMaking vim the default editor when I double click a fileHow to add hostname display to VIM statusline in Linux?

Chess with symmetric move-square

I probably found a bug with the sudo apt install function

least quadratic residue under GRH: an EXPLICIT bound

The use of multiple foreign keys on same column in SQL Server

Closed subgroups of abelian groups

What are these boxed doors outside store fronts in New York?

How can I fix this gap between bookcases I made?

DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?

What makes Graph invariants so useful/important?

Are tax years 2016 & 2017 back taxes deductible for tax year 2018?

A Journey Through Space and Time

Copycat chess is back

Are white and non-white police officers equally likely to kill black suspects?

Calculus Optimization - Point on graph closest to given point

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

Can I interfere when another PC is about to be attacked?

Is it possible to make sharp wind that can cut stuff from afar?

Is it legal to have the "// (c) 2019 John Smith" header in all files when there are hundreds of contributors?

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Patience, young "Padovan"

Why are 150k or 200k jobs considered good when there are 300k+ births a month?

How do I create uniquely male characters?

Is there really no realistic way for a skeleton monster to move around without magic?

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?



What is the format of the default statusline?


vim/emacs plugin to view recursive grep search search results?How to set the bash display to not show the vim text after exit?Can not edit .vimrc fileHow can I constantly see the current filename in vim?Show status lines of vim and tmux on the same linevim: hide first n letters of all lines in a fileSet default permissions by file type (at least in Vim)Set the bash display [while using GNU Screen utility] to not show the vim text after exitMaking vim the default editor when I double click a fileHow to add hostname display to VIM statusline in Linux?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








10















I read about how to update the vim statusline here. And I am able to update it successfully.



But, I would like to retain the format of default vim statusline and just add some more info to it e.g. file-size, file-type, etc.



Vim default status line is:



 <file-name> line_num,col_num %file


How could I do the following?



  1. I would like to add info after the file-name

  2. Display the current format of statusline (:set statusline displays nothing)

I tried:



set statusline+=%y


But this overwrites the entire statusline and just displays the file-type (%y).



Any hints?










share|improve this question



















  • 2





    If you're interested in Vim, do checkout Vi and Vim!

    – muru
    Aug 22 '15 at 12:44

















10















I read about how to update the vim statusline here. And I am able to update it successfully.



But, I would like to retain the format of default vim statusline and just add some more info to it e.g. file-size, file-type, etc.



Vim default status line is:



 <file-name> line_num,col_num %file


How could I do the following?



  1. I would like to add info after the file-name

  2. Display the current format of statusline (:set statusline displays nothing)

I tried:



set statusline+=%y


But this overwrites the entire statusline and just displays the file-type (%y).



Any hints?










share|improve this question



















  • 2





    If you're interested in Vim, do checkout Vi and Vim!

    – muru
    Aug 22 '15 at 12:44













10












10








10


2






I read about how to update the vim statusline here. And I am able to update it successfully.



But, I would like to retain the format of default vim statusline and just add some more info to it e.g. file-size, file-type, etc.



Vim default status line is:



 <file-name> line_num,col_num %file


How could I do the following?



  1. I would like to add info after the file-name

  2. Display the current format of statusline (:set statusline displays nothing)

I tried:



set statusline+=%y


But this overwrites the entire statusline and just displays the file-type (%y).



Any hints?










share|improve this question
















I read about how to update the vim statusline here. And I am able to update it successfully.



But, I would like to retain the format of default vim statusline and just add some more info to it e.g. file-size, file-type, etc.



Vim default status line is:



 <file-name> line_num,col_num %file


How could I do the following?



  1. I would like to add info after the file-name

  2. Display the current format of statusline (:set statusline displays nothing)

I tried:



set statusline+=%y


But this overwrites the entire statusline and just displays the file-type (%y).



Any hints?







vim






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 22 '15 at 12:45









muru

37.2k589164




37.2k589164










asked Aug 22 '15 at 9:17









mtkmtk

8,5682864105




8,5682864105







  • 2





    If you're interested in Vim, do checkout Vi and Vim!

    – muru
    Aug 22 '15 at 12:44












  • 2





    If you're interested in Vim, do checkout Vi and Vim!

    – muru
    Aug 22 '15 at 12:44







2




2





If you're interested in Vim, do checkout Vi and Vim!

– muru
Aug 22 '15 at 12:44





If you're interested in Vim, do checkout Vi and Vim!

– muru
Aug 22 '15 at 12:44










2 Answers
2






active

oldest

votes


















13














Like @muru said, it doesn't seem to possible to exactly simulate the default status line when statusline is set as the code for rendering it does things that can't be specified in the statusline setting. It is possible to get pretty close, however. Here is a reasonable approximation of the way the default status line looks when ruler is enabled:



:set statusline=%f %h%w%m%r %=%(%l,%c%V %= %P%)


The main difference is the positioning of the line and column numbers. If it's possible to simulate the default spacing logic, I haven't been able to figure out a way to do it. Perhaps this will be close enough for your purposes.



I use a split version of this in my own .vimrc to place Syntastic status line info in the middle of what looks like a normal vim status line with ruler:



" start of default statusline
set statusline=%f %h%w%m%r
" NOTE: preceding line has a trailing space character

" Syntastic statusline
set statusline+=%#warningmsg#
set statusline+=%SyntasticStatuslineFlag()
set statusline+=%*

" end of default statusline (with ruler)
set statusline+=%=%(%l,%c%V %= %P%)





share|improve this answer
































    7














    The code doesn't set any value to an empty status string, but simply acts using some defaults. See src/screen.c, function win_redr_status(). The items shown are based on features compiled in, therefore to reconstruct the exact statusline one would need to look at the features compiled in. It might be simpler to use the example statusline given in :h statusline:



    Examples:
    Emulate standard status line with 'ruler' set
    :set statusline=%<%f %h%m%r%=%-14.(%l,%c%V%) %P





    share|improve this answer























    • What does the dot symbol (.) after the width (14) mean in %-14.(%l,%c%V%)?

      – Shamaoke
      Jan 26 '18 at 12:21












    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "106"
    ;
    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%2funix.stackexchange.com%2fquestions%2f224771%2fwhat-is-the-format-of-the-default-statusline%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    13














    Like @muru said, it doesn't seem to possible to exactly simulate the default status line when statusline is set as the code for rendering it does things that can't be specified in the statusline setting. It is possible to get pretty close, however. Here is a reasonable approximation of the way the default status line looks when ruler is enabled:



    :set statusline=%f %h%w%m%r %=%(%l,%c%V %= %P%)


    The main difference is the positioning of the line and column numbers. If it's possible to simulate the default spacing logic, I haven't been able to figure out a way to do it. Perhaps this will be close enough for your purposes.



    I use a split version of this in my own .vimrc to place Syntastic status line info in the middle of what looks like a normal vim status line with ruler:



    " start of default statusline
    set statusline=%f %h%w%m%r
    " NOTE: preceding line has a trailing space character

    " Syntastic statusline
    set statusline+=%#warningmsg#
    set statusline+=%SyntasticStatuslineFlag()
    set statusline+=%*

    " end of default statusline (with ruler)
    set statusline+=%=%(%l,%c%V %= %P%)





    share|improve this answer





























      13














      Like @muru said, it doesn't seem to possible to exactly simulate the default status line when statusline is set as the code for rendering it does things that can't be specified in the statusline setting. It is possible to get pretty close, however. Here is a reasonable approximation of the way the default status line looks when ruler is enabled:



      :set statusline=%f %h%w%m%r %=%(%l,%c%V %= %P%)


      The main difference is the positioning of the line and column numbers. If it's possible to simulate the default spacing logic, I haven't been able to figure out a way to do it. Perhaps this will be close enough for your purposes.



      I use a split version of this in my own .vimrc to place Syntastic status line info in the middle of what looks like a normal vim status line with ruler:



      " start of default statusline
      set statusline=%f %h%w%m%r
      " NOTE: preceding line has a trailing space character

      " Syntastic statusline
      set statusline+=%#warningmsg#
      set statusline+=%SyntasticStatuslineFlag()
      set statusline+=%*

      " end of default statusline (with ruler)
      set statusline+=%=%(%l,%c%V %= %P%)





      share|improve this answer



























        13












        13








        13







        Like @muru said, it doesn't seem to possible to exactly simulate the default status line when statusline is set as the code for rendering it does things that can't be specified in the statusline setting. It is possible to get pretty close, however. Here is a reasonable approximation of the way the default status line looks when ruler is enabled:



        :set statusline=%f %h%w%m%r %=%(%l,%c%V %= %P%)


        The main difference is the positioning of the line and column numbers. If it's possible to simulate the default spacing logic, I haven't been able to figure out a way to do it. Perhaps this will be close enough for your purposes.



        I use a split version of this in my own .vimrc to place Syntastic status line info in the middle of what looks like a normal vim status line with ruler:



        " start of default statusline
        set statusline=%f %h%w%m%r
        " NOTE: preceding line has a trailing space character

        " Syntastic statusline
        set statusline+=%#warningmsg#
        set statusline+=%SyntasticStatuslineFlag()
        set statusline+=%*

        " end of default statusline (with ruler)
        set statusline+=%=%(%l,%c%V %= %P%)





        share|improve this answer















        Like @muru said, it doesn't seem to possible to exactly simulate the default status line when statusline is set as the code for rendering it does things that can't be specified in the statusline setting. It is possible to get pretty close, however. Here is a reasonable approximation of the way the default status line looks when ruler is enabled:



        :set statusline=%f %h%w%m%r %=%(%l,%c%V %= %P%)


        The main difference is the positioning of the line and column numbers. If it's possible to simulate the default spacing logic, I haven't been able to figure out a way to do it. Perhaps this will be close enough for your purposes.



        I use a split version of this in my own .vimrc to place Syntastic status line info in the middle of what looks like a normal vim status line with ruler:



        " start of default statusline
        set statusline=%f %h%w%m%r
        " NOTE: preceding line has a trailing space character

        " Syntastic statusline
        set statusline+=%#warningmsg#
        set statusline+=%SyntasticStatuslineFlag()
        set statusline+=%*

        " end of default statusline (with ruler)
        set statusline+=%=%(%l,%c%V %= %P%)






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 27 at 16:52

























        answered Nov 17 '15 at 18:48









        Laurence GonsalvesLaurence Gonsalves

        425410




        425410























            7














            The code doesn't set any value to an empty status string, but simply acts using some defaults. See src/screen.c, function win_redr_status(). The items shown are based on features compiled in, therefore to reconstruct the exact statusline one would need to look at the features compiled in. It might be simpler to use the example statusline given in :h statusline:



            Examples:
            Emulate standard status line with 'ruler' set
            :set statusline=%<%f %h%m%r%=%-14.(%l,%c%V%) %P





            share|improve this answer























            • What does the dot symbol (.) after the width (14) mean in %-14.(%l,%c%V%)?

              – Shamaoke
              Jan 26 '18 at 12:21
















            7














            The code doesn't set any value to an empty status string, but simply acts using some defaults. See src/screen.c, function win_redr_status(). The items shown are based on features compiled in, therefore to reconstruct the exact statusline one would need to look at the features compiled in. It might be simpler to use the example statusline given in :h statusline:



            Examples:
            Emulate standard status line with 'ruler' set
            :set statusline=%<%f %h%m%r%=%-14.(%l,%c%V%) %P





            share|improve this answer























            • What does the dot symbol (.) after the width (14) mean in %-14.(%l,%c%V%)?

              – Shamaoke
              Jan 26 '18 at 12:21














            7












            7








            7







            The code doesn't set any value to an empty status string, but simply acts using some defaults. See src/screen.c, function win_redr_status(). The items shown are based on features compiled in, therefore to reconstruct the exact statusline one would need to look at the features compiled in. It might be simpler to use the example statusline given in :h statusline:



            Examples:
            Emulate standard status line with 'ruler' set
            :set statusline=%<%f %h%m%r%=%-14.(%l,%c%V%) %P





            share|improve this answer













            The code doesn't set any value to an empty status string, but simply acts using some defaults. See src/screen.c, function win_redr_status(). The items shown are based on features compiled in, therefore to reconstruct the exact statusline one would need to look at the features compiled in. It might be simpler to use the example statusline given in :h statusline:



            Examples:
            Emulate standard status line with 'ruler' set
            :set statusline=%<%f %h%m%r%=%-14.(%l,%c%V%) %P






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Aug 22 '15 at 12:43









            murumuru

            37.2k589164




            37.2k589164












            • What does the dot symbol (.) after the width (14) mean in %-14.(%l,%c%V%)?

              – Shamaoke
              Jan 26 '18 at 12:21


















            • What does the dot symbol (.) after the width (14) mean in %-14.(%l,%c%V%)?

              – Shamaoke
              Jan 26 '18 at 12:21

















            What does the dot symbol (.) after the width (14) mean in %-14.(%l,%c%V%)?

            – Shamaoke
            Jan 26 '18 at 12:21






            What does the dot symbol (.) after the width (14) mean in %-14.(%l,%c%V%)?

            – Shamaoke
            Jan 26 '18 at 12:21


















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Unix & Linux 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%2funix.stackexchange.com%2fquestions%2f224771%2fwhat-is-the-format-of-the-default-statusline%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







            -vim

            Popular posts from this blog

            Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

            Frič See also Navigation menuinternal link

            Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant