alt + shift not work











up vote
1
down vote

favorite
2












I use Alt + Shift to change the language. It is so normal and I have worked with that for a long time. But some days some thing have happen for me. That is Alt + Shift not work all times. For example I can use it on libreOffice to change the language and also on browses. But on some application it does not work. I do not know why.



For example on Taskque software, when I want to add my own task and change the language, Alt+Shift doesn't work.










share|improve this question




























    up vote
    1
    down vote

    favorite
    2












    I use Alt + Shift to change the language. It is so normal and I have worked with that for a long time. But some days some thing have happen for me. That is Alt + Shift not work all times. For example I can use it on libreOffice to change the language and also on browses. But on some application it does not work. I do not know why.



    For example on Taskque software, when I want to add my own task and change the language, Alt+Shift doesn't work.










    share|improve this question


























      up vote
      1
      down vote

      favorite
      2









      up vote
      1
      down vote

      favorite
      2






      2





      I use Alt + Shift to change the language. It is so normal and I have worked with that for a long time. But some days some thing have happen for me. That is Alt + Shift not work all times. For example I can use it on libreOffice to change the language and also on browses. But on some application it does not work. I do not know why.



      For example on Taskque software, when I want to add my own task and change the language, Alt+Shift doesn't work.










      share|improve this question















      I use Alt + Shift to change the language. It is so normal and I have worked with that for a long time. But some days some thing have happen for me. That is Alt + Shift not work all times. For example I can use it on libreOffice to change the language and also on browses. But on some application it does not work. I do not know why.



      For example on Taskque software, when I want to add my own task and change the language, Alt+Shift doesn't work.







      keyboard






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 4 '14 at 13:08









      Graham

      2,17161527




      2,17161527










      asked Aug 4 '14 at 10:14









      Mohammad Reza Rezwani

      3,5692258109




      3,5692258109






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          Perhaps this will help...



          Open a terminal and run:



          gksu gedit /etc/default/keyboard


          (or use some other text editor)



          Do following changes in the file:



          XKBLAYOUT="de,us"
          XKBVARIANT=""
          XKBOPTIONS="grp:alt_shift_toggle"


          (Replace de,us with your languages)



          Restart and try again.



          More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334






          share|improve this answer




























            up vote
            1
            down vote













            This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.





            1. You can verify how Alt and Shift are not being detected simultaneously by running



              $ xkbwatch


              Notice how the blinky lights change for ALT and for SHIFT individually but not for both at the same time.




            2. The output of setxkbmap -query:



              rules: evdev
              model: pc105
              layout: us,us,us
              variant: ,intl,
              options: grp:alt_shift_toggle,grp_led:scroll
              ^^^^^^^^^^^^^^^^^^^^
              THIS IS THE PROBLEM



            3. We will now unset ALTSHIFT toggle, so that it is not prematurely captured.



              $ setxkbmap -option -option grp_led:scroll
              ^^^^^^^
              DELIBERATELY EMPTY


              The first empty -option erases all options, the second one just
              carries over an option we want to keep. Additional -option clauses can
              preserve other preexisting options.



              You can still change to next/previous input source with whatever is configured in Ubuntu Settings/Keyboard/Typing. In my case it is Super+Space (Super=Windows key in PCs).



            4. Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.



            I am now a happy Emacs and IntelliJ user.

            This is a single command workaround.






            share|improve this answer










            New contributor




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


















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "89"
              };
              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: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              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%2faskubuntu.com%2fquestions%2f506620%2falt-shift-not-work%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








              up vote
              2
              down vote



              accepted










              Perhaps this will help...



              Open a terminal and run:



              gksu gedit /etc/default/keyboard


              (or use some other text editor)



              Do following changes in the file:



              XKBLAYOUT="de,us"
              XKBVARIANT=""
              XKBOPTIONS="grp:alt_shift_toggle"


              (Replace de,us with your languages)



              Restart and try again.



              More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334






              share|improve this answer

























                up vote
                2
                down vote



                accepted










                Perhaps this will help...



                Open a terminal and run:



                gksu gedit /etc/default/keyboard


                (or use some other text editor)



                Do following changes in the file:



                XKBLAYOUT="de,us"
                XKBVARIANT=""
                XKBOPTIONS="grp:alt_shift_toggle"


                (Replace de,us with your languages)



                Restart and try again.



                More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334






                share|improve this answer























                  up vote
                  2
                  down vote



                  accepted







                  up vote
                  2
                  down vote



                  accepted






                  Perhaps this will help...



                  Open a terminal and run:



                  gksu gedit /etc/default/keyboard


                  (or use some other text editor)



                  Do following changes in the file:



                  XKBLAYOUT="de,us"
                  XKBVARIANT=""
                  XKBOPTIONS="grp:alt_shift_toggle"


                  (Replace de,us with your languages)



                  Restart and try again.



                  More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334






                  share|improve this answer












                  Perhaps this will help...



                  Open a terminal and run:



                  gksu gedit /etc/default/keyboard


                  (or use some other text editor)



                  Do following changes in the file:



                  XKBLAYOUT="de,us"
                  XKBVARIANT=""
                  XKBOPTIONS="grp:alt_shift_toggle"


                  (Replace de,us with your languages)



                  Restart and try again.



                  More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Aug 4 '14 at 12:29









                  TuKsn

                  3,43011437




                  3,43011437
























                      up vote
                      1
                      down vote













                      This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.





                      1. You can verify how Alt and Shift are not being detected simultaneously by running



                        $ xkbwatch


                        Notice how the blinky lights change for ALT and for SHIFT individually but not for both at the same time.




                      2. The output of setxkbmap -query:



                        rules: evdev
                        model: pc105
                        layout: us,us,us
                        variant: ,intl,
                        options: grp:alt_shift_toggle,grp_led:scroll
                        ^^^^^^^^^^^^^^^^^^^^
                        THIS IS THE PROBLEM



                      3. We will now unset ALTSHIFT toggle, so that it is not prematurely captured.



                        $ setxkbmap -option -option grp_led:scroll
                        ^^^^^^^
                        DELIBERATELY EMPTY


                        The first empty -option erases all options, the second one just
                        carries over an option we want to keep. Additional -option clauses can
                        preserve other preexisting options.



                        You can still change to next/previous input source with whatever is configured in Ubuntu Settings/Keyboard/Typing. In my case it is Super+Space (Super=Windows key in PCs).



                      4. Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.



                      I am now a happy Emacs and IntelliJ user.

                      This is a single command workaround.






                      share|improve this answer










                      New contributor




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






















                        up vote
                        1
                        down vote













                        This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.





                        1. You can verify how Alt and Shift are not being detected simultaneously by running



                          $ xkbwatch


                          Notice how the blinky lights change for ALT and for SHIFT individually but not for both at the same time.




                        2. The output of setxkbmap -query:



                          rules: evdev
                          model: pc105
                          layout: us,us,us
                          variant: ,intl,
                          options: grp:alt_shift_toggle,grp_led:scroll
                          ^^^^^^^^^^^^^^^^^^^^
                          THIS IS THE PROBLEM



                        3. We will now unset ALTSHIFT toggle, so that it is not prematurely captured.



                          $ setxkbmap -option -option grp_led:scroll
                          ^^^^^^^
                          DELIBERATELY EMPTY


                          The first empty -option erases all options, the second one just
                          carries over an option we want to keep. Additional -option clauses can
                          preserve other preexisting options.



                          You can still change to next/previous input source with whatever is configured in Ubuntu Settings/Keyboard/Typing. In my case it is Super+Space (Super=Windows key in PCs).



                        4. Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.



                        I am now a happy Emacs and IntelliJ user.

                        This is a single command workaround.






                        share|improve this answer










                        New contributor




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




















                          up vote
                          1
                          down vote










                          up vote
                          1
                          down vote









                          This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.





                          1. You can verify how Alt and Shift are not being detected simultaneously by running



                            $ xkbwatch


                            Notice how the blinky lights change for ALT and for SHIFT individually but not for both at the same time.




                          2. The output of setxkbmap -query:



                            rules: evdev
                            model: pc105
                            layout: us,us,us
                            variant: ,intl,
                            options: grp:alt_shift_toggle,grp_led:scroll
                            ^^^^^^^^^^^^^^^^^^^^
                            THIS IS THE PROBLEM



                          3. We will now unset ALTSHIFT toggle, so that it is not prematurely captured.



                            $ setxkbmap -option -option grp_led:scroll
                            ^^^^^^^
                            DELIBERATELY EMPTY


                            The first empty -option erases all options, the second one just
                            carries over an option we want to keep. Additional -option clauses can
                            preserve other preexisting options.



                            You can still change to next/previous input source with whatever is configured in Ubuntu Settings/Keyboard/Typing. In my case it is Super+Space (Super=Windows key in PCs).



                          4. Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.



                          I am now a happy Emacs and IntelliJ user.

                          This is a single command workaround.






                          share|improve this answer










                          New contributor




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









                          This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.





                          1. You can verify how Alt and Shift are not being detected simultaneously by running



                            $ xkbwatch


                            Notice how the blinky lights change for ALT and for SHIFT individually but not for both at the same time.




                          2. The output of setxkbmap -query:



                            rules: evdev
                            model: pc105
                            layout: us,us,us
                            variant: ,intl,
                            options: grp:alt_shift_toggle,grp_led:scroll
                            ^^^^^^^^^^^^^^^^^^^^
                            THIS IS THE PROBLEM



                          3. We will now unset ALTSHIFT toggle, so that it is not prematurely captured.



                            $ setxkbmap -option -option grp_led:scroll
                            ^^^^^^^
                            DELIBERATELY EMPTY


                            The first empty -option erases all options, the second one just
                            carries over an option we want to keep. Additional -option clauses can
                            preserve other preexisting options.



                            You can still change to next/previous input source with whatever is configured in Ubuntu Settings/Keyboard/Typing. In my case it is Super+Space (Super=Windows key in PCs).



                          4. Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.



                          I am now a happy Emacs and IntelliJ user.

                          This is a single command workaround.







                          share|improve this answer










                          New contributor




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









                          share|improve this answer



                          share|improve this answer








                          edited Nov 20 at 3:51









                          zx485

                          1,43831114




                          1,43831114






                          New contributor




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









                          answered Nov 19 at 15:34









                          C. Daniel Mojoli B.

                          111




                          111




                          New contributor




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





                          New contributor





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






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






























                               

                              draft saved


                              draft discarded



















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f506620%2falt-shift-not-work%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

                              Mont Emei

                              Province de Neuquén

                              Journaliste