prompt (PS1) doesn't update on bound command

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I don't understand why these two different ways to use the same command lead to different behaviors.



I've installed fzf and fd and have the following lines in .bashrc



function updir()
cd ..

function overdir() fzf`

function downdir() fzf`


bind -x '"C-i":"updir"'
bind -x '"C-j":"overdir"'
bind -x '"C-l":"downdir"'

export PS1="[u@h:W]$ "


If I type overdir in the shell I can type a pattern and go to a directory as expected, and the current working directory updates in the prompt, like so



[davidlittle@deus1:~]$ overdir
[davidlittle@deus1:googledrive]$ overdir
[davidlittle@deus1:Preferences]$


Note that inbetween these prompts an fzf window is revealed, I select a directory, and then the view returns to what is shown above. However, if I do the same thing using the bound shortcut "C-j" instead of , now I get something different:



[davidlittle@deus1:Preferences]$
[davidlittle@deus1:Preferences]$ ls
%Users%davidlittle%googledrive%Preferences%vscode%settings.json keybindings.json settings.json
[davidlittle@deus1:vscode]$


As you can see the directory listed in the prompt is Preferences on line 2. But this was after hitting C-j and selecting the vscode directory. Once I call ls the correct directory is shown in the prompt.



The expected behavior is that line 2 of the second example should display vscode not Preferences.



What's going wrong???









share







New contributor




HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.























    up vote
    0
    down vote

    favorite












    I don't understand why these two different ways to use the same command lead to different behaviors.



    I've installed fzf and fd and have the following lines in .bashrc



    function updir()
    cd ..

    function overdir() fzf`

    function downdir() fzf`


    bind -x '"C-i":"updir"'
    bind -x '"C-j":"overdir"'
    bind -x '"C-l":"downdir"'

    export PS1="[u@h:W]$ "


    If I type overdir in the shell I can type a pattern and go to a directory as expected, and the current working directory updates in the prompt, like so



    [davidlittle@deus1:~]$ overdir
    [davidlittle@deus1:googledrive]$ overdir
    [davidlittle@deus1:Preferences]$


    Note that inbetween these prompts an fzf window is revealed, I select a directory, and then the view returns to what is shown above. However, if I do the same thing using the bound shortcut "C-j" instead of , now I get something different:



    [davidlittle@deus1:Preferences]$
    [davidlittle@deus1:Preferences]$ ls
    %Users%davidlittle%googledrive%Preferences%vscode%settings.json keybindings.json settings.json
    [davidlittle@deus1:vscode]$


    As you can see the directory listed in the prompt is Preferences on line 2. But this was after hitting C-j and selecting the vscode directory. Once I call ls the correct directory is shown in the prompt.



    The expected behavior is that line 2 of the second example should display vscode not Preferences.



    What's going wrong???









    share







    New contributor




    HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I don't understand why these two different ways to use the same command lead to different behaviors.



      I've installed fzf and fd and have the following lines in .bashrc



      function updir()
      cd ..

      function overdir() fzf`

      function downdir() fzf`


      bind -x '"C-i":"updir"'
      bind -x '"C-j":"overdir"'
      bind -x '"C-l":"downdir"'

      export PS1="[u@h:W]$ "


      If I type overdir in the shell I can type a pattern and go to a directory as expected, and the current working directory updates in the prompt, like so



      [davidlittle@deus1:~]$ overdir
      [davidlittle@deus1:googledrive]$ overdir
      [davidlittle@deus1:Preferences]$


      Note that inbetween these prompts an fzf window is revealed, I select a directory, and then the view returns to what is shown above. However, if I do the same thing using the bound shortcut "C-j" instead of , now I get something different:



      [davidlittle@deus1:Preferences]$
      [davidlittle@deus1:Preferences]$ ls
      %Users%davidlittle%googledrive%Preferences%vscode%settings.json keybindings.json settings.json
      [davidlittle@deus1:vscode]$


      As you can see the directory listed in the prompt is Preferences on line 2. But this was after hitting C-j and selecting the vscode directory. Once I call ls the correct directory is shown in the prompt.



      The expected behavior is that line 2 of the second example should display vscode not Preferences.



      What's going wrong???









      share







      New contributor




      HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I don't understand why these two different ways to use the same command lead to different behaviors.



      I've installed fzf and fd and have the following lines in .bashrc



      function updir()
      cd ..

      function overdir() fzf`

      function downdir() fzf`


      bind -x '"C-i":"updir"'
      bind -x '"C-j":"overdir"'
      bind -x '"C-l":"downdir"'

      export PS1="[u@h:W]$ "


      If I type overdir in the shell I can type a pattern and go to a directory as expected, and the current working directory updates in the prompt, like so



      [davidlittle@deus1:~]$ overdir
      [davidlittle@deus1:googledrive]$ overdir
      [davidlittle@deus1:Preferences]$


      Note that inbetween these prompts an fzf window is revealed, I select a directory, and then the view returns to what is shown above. However, if I do the same thing using the bound shortcut "C-j" instead of , now I get something different:



      [davidlittle@deus1:Preferences]$
      [davidlittle@deus1:Preferences]$ ls
      %Users%davidlittle%googledrive%Preferences%vscode%settings.json keybindings.json settings.json
      [davidlittle@deus1:vscode]$


      As you can see the directory listed in the prompt is Preferences on line 2. But this was after hitting C-j and selecting the vscode directory. Once I call ls the correct directory is shown in the prompt.



      The expected behavior is that line 2 of the second example should display vscode not Preferences.



      What's going wrong???







      bash bind





      share







      New contributor




      HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share







      New contributor




      HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share






      New contributor




      HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 1 min ago









      HaberdashPI

      1




      1




      New contributor




      HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      HaberdashPI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.

























          active

          oldest

          votes











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



          );






          HaberdashPI is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f479244%2fprompt-ps1-doesnt-update-on-bound-command%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          HaberdashPI is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          HaberdashPI is a new contributor. Be nice, and check out our Code of Conduct.












          HaberdashPI is a new contributor. Be nice, and check out our Code of Conduct.











          HaberdashPI is a new contributor. Be nice, and check out our Code of Conduct.













           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f479244%2fprompt-ps1-doesnt-update-on-bound-command%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay