Ctrl + V and Ctrl + C doesn't work in Intellij IDEA 14.0.2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I can't copy and paste code in Intellij. I've been googling for a couple hours now. Every forum where there is a solution does not work.
Ctrl+X works.
Ctrl+Z works.
Ctrl+V does not work.
Ctrl+C does not work.
I'm using the latest version of Intellij Idea (14.0.2), I'm running Linux lite - posted here because Linux lite is based off Ubuntu and it will be similar.
Here is what happens when I right click
(I don't have enough rep to post images apparently):
I looked in setting and found keymap then typed copy in the search bar and this is what came up:
shortcut-keys intellij
add a comment |
I can't copy and paste code in Intellij. I've been googling for a couple hours now. Every forum where there is a solution does not work.
Ctrl+X works.
Ctrl+Z works.
Ctrl+V does not work.
Ctrl+C does not work.
I'm using the latest version of Intellij Idea (14.0.2), I'm running Linux lite - posted here because Linux lite is based off Ubuntu and it will be similar.
Here is what happens when I right click
(I don't have enough rep to post images apparently):
I looked in setting and found keymap then typed copy in the search bar and this is what came up:
shortcut-keys intellij
Click on the 'Edit' option and see if there come options like 'copy' and 'paste' or not.If there are 'copy' and 'paste' options,use them.See and report if they work or not.
– saptarshi nag
Jan 4 '15 at 7:50
I had this problem when working in a different language. All I had to do was revert back to English.
– Yonatan Simson
Sep 14 '16 at 5:33
add a comment |
I can't copy and paste code in Intellij. I've been googling for a couple hours now. Every forum where there is a solution does not work.
Ctrl+X works.
Ctrl+Z works.
Ctrl+V does not work.
Ctrl+C does not work.
I'm using the latest version of Intellij Idea (14.0.2), I'm running Linux lite - posted here because Linux lite is based off Ubuntu and it will be similar.
Here is what happens when I right click
(I don't have enough rep to post images apparently):
I looked in setting and found keymap then typed copy in the search bar and this is what came up:
shortcut-keys intellij
I can't copy and paste code in Intellij. I've been googling for a couple hours now. Every forum where there is a solution does not work.
Ctrl+X works.
Ctrl+Z works.
Ctrl+V does not work.
Ctrl+C does not work.
I'm using the latest version of Intellij Idea (14.0.2), I'm running Linux lite - posted here because Linux lite is based off Ubuntu and it will be similar.
Here is what happens when I right click
(I don't have enough rep to post images apparently):
I looked in setting and found keymap then typed copy in the search bar and this is what came up:
shortcut-keys intellij
shortcut-keys intellij
edited Mar 6 at 11:46
user7610
1435
1435
asked Jan 4 '15 at 7:18
gogobebe2gogobebe2
1441211
1441211
Click on the 'Edit' option and see if there come options like 'copy' and 'paste' or not.If there are 'copy' and 'paste' options,use them.See and report if they work or not.
– saptarshi nag
Jan 4 '15 at 7:50
I had this problem when working in a different language. All I had to do was revert back to English.
– Yonatan Simson
Sep 14 '16 at 5:33
add a comment |
Click on the 'Edit' option and see if there come options like 'copy' and 'paste' or not.If there are 'copy' and 'paste' options,use them.See and report if they work or not.
– saptarshi nag
Jan 4 '15 at 7:50
I had this problem when working in a different language. All I had to do was revert back to English.
– Yonatan Simson
Sep 14 '16 at 5:33
Click on the 'Edit' option and see if there come options like 'copy' and 'paste' or not.If there are 'copy' and 'paste' options,use them.See and report if they work or not.
– saptarshi nag
Jan 4 '15 at 7:50
Click on the 'Edit' option and see if there come options like 'copy' and 'paste' or not.If there are 'copy' and 'paste' options,use them.See and report if they work or not.
– saptarshi nag
Jan 4 '15 at 7:50
I had this problem when working in a different language. All I had to do was revert back to English.
– Yonatan Simson
Sep 14 '16 at 5:33
I had this problem when working in a different language. All I had to do was revert back to English.
– Yonatan Simson
Sep 14 '16 at 5:33
add a comment |
9 Answers
9
active
oldest
votes
I had this problem and it was driving me absolutely insane.
If you want to keep using the vim plugin, and have ^c and ^v work for copy / paste like it does in other applications, then you need to go to your settings, and select Other Settings / Vim Emulation (as shown below).... Then make sure that both ^c and ^v are set to be handled by the IDE (not Vim!) and everything should work fine.
This was it for me, although was having trouble with Ctrl+B, I still prefer to keep Ctrl+V for visual mode. Feel silly now as the first time you use a shortcut it notifies you that the vim plugin is handling it.
– Alex Forbes
Jan 11 '18 at 11:13
someone please make this the default behavior. almost switched to vs code because of this.
– rouble
Jan 20 at 23:43
add a comment |
From File -> Settings -> Plugins search for ideavim plugin. When found click on it. On the right panel you will see an Uninstall button. If you click it, you can uninstall the plugin without uninstalling all of IntelliJ IDEA.
saved my day. works perfect in windows environment too. When I installed IntilliJ I installed with all plugins. I got installed with the ideavim too. If we uninstall this plugin it works perfect.
– Jinna Balu
Aug 12 '16 at 12:36
add a comment |
- You can disable vim from the tools menu (instead of uninstalling it)
- For those who actually use vim (which is awesome) - there is an issue with copying from the run console and other outputs (this is how I stumbled onto this question), ctrl-c doesn't work there. The issue is that vim is wrapping those panels too, so you can just highlight and press 'y' :)
1
vim is awesome, spread the word ;^) good tip on console.. that always puzzled me.
– Chris Bedford
Sep 14 '15 at 20:32
add a comment |
Either disable the ideavim plugin, or use the Vim shortcuts.
The Vim shortcuts are d
, y
, P
/p
in command mode
to cut, copy and paste before/after the cursor. This clipboard is different than the clipboard in your OS. If you use Shift+Delete
, Ctrl+Insert
and Shift+Insert
, the cut, copied or pasted content will be placed to the system's clipboard.
See http://vim.wikia.com/wiki/Copy,_cut_and_paste. (You can use movement command (like w
) or the mouse to move the cursor around while selecting.)
Thanks! Why did I have so much trouble finding this very straight forward information?? Most answers seem to involve remapping the traditional keys or deleting the vim plugin.
– bot_bot
Mar 6 at 8:25
add a comment |
You may try Ctrl+Insert as Ctrl+C could be in conflict with the Vim editor plugin
add a comment |
Go to Files>Settings>Keymap
and change the keymap options(Upper Left hand corner) to Default for GENOME..
And Done.. Mine is working..
add a comment |
I tried many fixes online but the only thing that fixed my issues w/ copying and pasting(Especially in IntelliJ) was to install xdotool
https://www.howtoinstall.co/en/ubuntu/xenial/xdotool
Especially if you have Keepass installed.
1
Please post instructions instead of links to instructions. Links can stop working in the future.
– Dorian
Mar 28 '17 at 17:53
Wow, this really works
– luboskrnac
Apr 7 '17 at 12:15
add a comment |
This helped me:
sudo add-apt-repository ppa:attente/java-non-latin-shortcuts
sudo apt-get update
sudo apt-get dist-upgrade
restart unity-settings-daemon
UPD: more info here https://gist.github.com/d3zorg/3f71ee24b1a0a288ce27
1
Welcome to Ask Ubuntu! ;-) Could you please edit your answer and explain why OP should install a PPA, what it does, how it works, ... ;-)
– Fabby
Oct 3 '18 at 19:34
add a comment |
Go to Tools and unclick Vim Emulator and your problems should go away. It worked for me - community version 2018.3
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
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%2faskubuntu.com%2fquestions%2f568662%2fctrl-v-and-ctrl-c-doesnt-work-in-intellij-idea-14-0-2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
9 Answers
9
active
oldest
votes
9 Answers
9
active
oldest
votes
active
oldest
votes
active
oldest
votes
I had this problem and it was driving me absolutely insane.
If you want to keep using the vim plugin, and have ^c and ^v work for copy / paste like it does in other applications, then you need to go to your settings, and select Other Settings / Vim Emulation (as shown below).... Then make sure that both ^c and ^v are set to be handled by the IDE (not Vim!) and everything should work fine.
This was it for me, although was having trouble with Ctrl+B, I still prefer to keep Ctrl+V for visual mode. Feel silly now as the first time you use a shortcut it notifies you that the vim plugin is handling it.
– Alex Forbes
Jan 11 '18 at 11:13
someone please make this the default behavior. almost switched to vs code because of this.
– rouble
Jan 20 at 23:43
add a comment |
I had this problem and it was driving me absolutely insane.
If you want to keep using the vim plugin, and have ^c and ^v work for copy / paste like it does in other applications, then you need to go to your settings, and select Other Settings / Vim Emulation (as shown below).... Then make sure that both ^c and ^v are set to be handled by the IDE (not Vim!) and everything should work fine.
This was it for me, although was having trouble with Ctrl+B, I still prefer to keep Ctrl+V for visual mode. Feel silly now as the first time you use a shortcut it notifies you that the vim plugin is handling it.
– Alex Forbes
Jan 11 '18 at 11:13
someone please make this the default behavior. almost switched to vs code because of this.
– rouble
Jan 20 at 23:43
add a comment |
I had this problem and it was driving me absolutely insane.
If you want to keep using the vim plugin, and have ^c and ^v work for copy / paste like it does in other applications, then you need to go to your settings, and select Other Settings / Vim Emulation (as shown below).... Then make sure that both ^c and ^v are set to be handled by the IDE (not Vim!) and everything should work fine.
I had this problem and it was driving me absolutely insane.
If you want to keep using the vim plugin, and have ^c and ^v work for copy / paste like it does in other applications, then you need to go to your settings, and select Other Settings / Vim Emulation (as shown below).... Then make sure that both ^c and ^v are set to be handled by the IDE (not Vim!) and everything should work fine.
answered Aug 26 '15 at 0:51
Chris BedfordChris Bedford
49645
49645
This was it for me, although was having trouble with Ctrl+B, I still prefer to keep Ctrl+V for visual mode. Feel silly now as the first time you use a shortcut it notifies you that the vim plugin is handling it.
– Alex Forbes
Jan 11 '18 at 11:13
someone please make this the default behavior. almost switched to vs code because of this.
– rouble
Jan 20 at 23:43
add a comment |
This was it for me, although was having trouble with Ctrl+B, I still prefer to keep Ctrl+V for visual mode. Feel silly now as the first time you use a shortcut it notifies you that the vim plugin is handling it.
– Alex Forbes
Jan 11 '18 at 11:13
someone please make this the default behavior. almost switched to vs code because of this.
– rouble
Jan 20 at 23:43
This was it for me, although was having trouble with Ctrl+B, I still prefer to keep Ctrl+V for visual mode. Feel silly now as the first time you use a shortcut it notifies you that the vim plugin is handling it.
– Alex Forbes
Jan 11 '18 at 11:13
This was it for me, although was having trouble with Ctrl+B, I still prefer to keep Ctrl+V for visual mode. Feel silly now as the first time you use a shortcut it notifies you that the vim plugin is handling it.
– Alex Forbes
Jan 11 '18 at 11:13
someone please make this the default behavior. almost switched to vs code because of this.
– rouble
Jan 20 at 23:43
someone please make this the default behavior. almost switched to vs code because of this.
– rouble
Jan 20 at 23:43
add a comment |
From File -> Settings -> Plugins search for ideavim plugin. When found click on it. On the right panel you will see an Uninstall button. If you click it, you can uninstall the plugin without uninstalling all of IntelliJ IDEA.
saved my day. works perfect in windows environment too. When I installed IntilliJ I installed with all plugins. I got installed with the ideavim too. If we uninstall this plugin it works perfect.
– Jinna Balu
Aug 12 '16 at 12:36
add a comment |
From File -> Settings -> Plugins search for ideavim plugin. When found click on it. On the right panel you will see an Uninstall button. If you click it, you can uninstall the plugin without uninstalling all of IntelliJ IDEA.
saved my day. works perfect in windows environment too. When I installed IntilliJ I installed with all plugins. I got installed with the ideavim too. If we uninstall this plugin it works perfect.
– Jinna Balu
Aug 12 '16 at 12:36
add a comment |
From File -> Settings -> Plugins search for ideavim plugin. When found click on it. On the right panel you will see an Uninstall button. If you click it, you can uninstall the plugin without uninstalling all of IntelliJ IDEA.
From File -> Settings -> Plugins search for ideavim plugin. When found click on it. On the right panel you will see an Uninstall button. If you click it, you can uninstall the plugin without uninstalling all of IntelliJ IDEA.
edited Jan 31 '15 at 18:31
karel
60.8k13132155
60.8k13132155
answered Jan 31 '15 at 17:29
R A KhanR A Khan
126117
126117
saved my day. works perfect in windows environment too. When I installed IntilliJ I installed with all plugins. I got installed with the ideavim too. If we uninstall this plugin it works perfect.
– Jinna Balu
Aug 12 '16 at 12:36
add a comment |
saved my day. works perfect in windows environment too. When I installed IntilliJ I installed with all plugins. I got installed with the ideavim too. If we uninstall this plugin it works perfect.
– Jinna Balu
Aug 12 '16 at 12:36
saved my day. works perfect in windows environment too. When I installed IntilliJ I installed with all plugins. I got installed with the ideavim too. If we uninstall this plugin it works perfect.
– Jinna Balu
Aug 12 '16 at 12:36
saved my day. works perfect in windows environment too. When I installed IntilliJ I installed with all plugins. I got installed with the ideavim too. If we uninstall this plugin it works perfect.
– Jinna Balu
Aug 12 '16 at 12:36
add a comment |
- You can disable vim from the tools menu (instead of uninstalling it)
- For those who actually use vim (which is awesome) - there is an issue with copying from the run console and other outputs (this is how I stumbled onto this question), ctrl-c doesn't work there. The issue is that vim is wrapping those panels too, so you can just highlight and press 'y' :)
1
vim is awesome, spread the word ;^) good tip on console.. that always puzzled me.
– Chris Bedford
Sep 14 '15 at 20:32
add a comment |
- You can disable vim from the tools menu (instead of uninstalling it)
- For those who actually use vim (which is awesome) - there is an issue with copying from the run console and other outputs (this is how I stumbled onto this question), ctrl-c doesn't work there. The issue is that vim is wrapping those panels too, so you can just highlight and press 'y' :)
1
vim is awesome, spread the word ;^) good tip on console.. that always puzzled me.
– Chris Bedford
Sep 14 '15 at 20:32
add a comment |
- You can disable vim from the tools menu (instead of uninstalling it)
- For those who actually use vim (which is awesome) - there is an issue with copying from the run console and other outputs (this is how I stumbled onto this question), ctrl-c doesn't work there. The issue is that vim is wrapping those panels too, so you can just highlight and press 'y' :)
- You can disable vim from the tools menu (instead of uninstalling it)
- For those who actually use vim (which is awesome) - there is an issue with copying from the run console and other outputs (this is how I stumbled onto this question), ctrl-c doesn't work there. The issue is that vim is wrapping those panels too, so you can just highlight and press 'y' :)
answered Feb 11 '15 at 12:36
Boris ChurzinBoris Churzin
1717
1717
1
vim is awesome, spread the word ;^) good tip on console.. that always puzzled me.
– Chris Bedford
Sep 14 '15 at 20:32
add a comment |
1
vim is awesome, spread the word ;^) good tip on console.. that always puzzled me.
– Chris Bedford
Sep 14 '15 at 20:32
1
1
vim is awesome, spread the word ;^) good tip on console.. that always puzzled me.
– Chris Bedford
Sep 14 '15 at 20:32
vim is awesome, spread the word ;^) good tip on console.. that always puzzled me.
– Chris Bedford
Sep 14 '15 at 20:32
add a comment |
Either disable the ideavim plugin, or use the Vim shortcuts.
The Vim shortcuts are d
, y
, P
/p
in command mode
to cut, copy and paste before/after the cursor. This clipboard is different than the clipboard in your OS. If you use Shift+Delete
, Ctrl+Insert
and Shift+Insert
, the cut, copied or pasted content will be placed to the system's clipboard.
See http://vim.wikia.com/wiki/Copy,_cut_and_paste. (You can use movement command (like w
) or the mouse to move the cursor around while selecting.)
Thanks! Why did I have so much trouble finding this very straight forward information?? Most answers seem to involve remapping the traditional keys or deleting the vim plugin.
– bot_bot
Mar 6 at 8:25
add a comment |
Either disable the ideavim plugin, or use the Vim shortcuts.
The Vim shortcuts are d
, y
, P
/p
in command mode
to cut, copy and paste before/after the cursor. This clipboard is different than the clipboard in your OS. If you use Shift+Delete
, Ctrl+Insert
and Shift+Insert
, the cut, copied or pasted content will be placed to the system's clipboard.
See http://vim.wikia.com/wiki/Copy,_cut_and_paste. (You can use movement command (like w
) or the mouse to move the cursor around while selecting.)
Thanks! Why did I have so much trouble finding this very straight forward information?? Most answers seem to involve remapping the traditional keys or deleting the vim plugin.
– bot_bot
Mar 6 at 8:25
add a comment |
Either disable the ideavim plugin, or use the Vim shortcuts.
The Vim shortcuts are d
, y
, P
/p
in command mode
to cut, copy and paste before/after the cursor. This clipboard is different than the clipboard in your OS. If you use Shift+Delete
, Ctrl+Insert
and Shift+Insert
, the cut, copied or pasted content will be placed to the system's clipboard.
See http://vim.wikia.com/wiki/Copy,_cut_and_paste. (You can use movement command (like w
) or the mouse to move the cursor around while selecting.)
Either disable the ideavim plugin, or use the Vim shortcuts.
The Vim shortcuts are d
, y
, P
/p
in command mode
to cut, copy and paste before/after the cursor. This clipboard is different than the clipboard in your OS. If you use Shift+Delete
, Ctrl+Insert
and Shift+Insert
, the cut, copied or pasted content will be placed to the system's clipboard.
See http://vim.wikia.com/wiki/Copy,_cut_and_paste. (You can use movement command (like w
) or the mouse to move the cursor around while selecting.)
answered Sep 8 '15 at 19:49
user7610user7610
1435
1435
Thanks! Why did I have so much trouble finding this very straight forward information?? Most answers seem to involve remapping the traditional keys or deleting the vim plugin.
– bot_bot
Mar 6 at 8:25
add a comment |
Thanks! Why did I have so much trouble finding this very straight forward information?? Most answers seem to involve remapping the traditional keys or deleting the vim plugin.
– bot_bot
Mar 6 at 8:25
Thanks! Why did I have so much trouble finding this very straight forward information?? Most answers seem to involve remapping the traditional keys or deleting the vim plugin.
– bot_bot
Mar 6 at 8:25
Thanks! Why did I have so much trouble finding this very straight forward information?? Most answers seem to involve remapping the traditional keys or deleting the vim plugin.
– bot_bot
Mar 6 at 8:25
add a comment |
You may try Ctrl+Insert as Ctrl+C could be in conflict with the Vim editor plugin
add a comment |
You may try Ctrl+Insert as Ctrl+C could be in conflict with the Vim editor plugin
add a comment |
You may try Ctrl+Insert as Ctrl+C could be in conflict with the Vim editor plugin
You may try Ctrl+Insert as Ctrl+C could be in conflict with the Vim editor plugin
edited Oct 9 '15 at 3:35
Ravan
5,903154577
5,903154577
answered Apr 22 '15 at 5:29
AbhinavAbhinav
211
211
add a comment |
add a comment |
Go to Files>Settings>Keymap
and change the keymap options(Upper Left hand corner) to Default for GENOME..
And Done.. Mine is working..
add a comment |
Go to Files>Settings>Keymap
and change the keymap options(Upper Left hand corner) to Default for GENOME..
And Done.. Mine is working..
add a comment |
Go to Files>Settings>Keymap
and change the keymap options(Upper Left hand corner) to Default for GENOME..
And Done.. Mine is working..
Go to Files>Settings>Keymap
and change the keymap options(Upper Left hand corner) to Default for GENOME..
And Done.. Mine is working..
answered Apr 10 '16 at 10:10
anirudha136anirudha136
112
112
add a comment |
add a comment |
I tried many fixes online but the only thing that fixed my issues w/ copying and pasting(Especially in IntelliJ) was to install xdotool
https://www.howtoinstall.co/en/ubuntu/xenial/xdotool
Especially if you have Keepass installed.
1
Please post instructions instead of links to instructions. Links can stop working in the future.
– Dorian
Mar 28 '17 at 17:53
Wow, this really works
– luboskrnac
Apr 7 '17 at 12:15
add a comment |
I tried many fixes online but the only thing that fixed my issues w/ copying and pasting(Especially in IntelliJ) was to install xdotool
https://www.howtoinstall.co/en/ubuntu/xenial/xdotool
Especially if you have Keepass installed.
1
Please post instructions instead of links to instructions. Links can stop working in the future.
– Dorian
Mar 28 '17 at 17:53
Wow, this really works
– luboskrnac
Apr 7 '17 at 12:15
add a comment |
I tried many fixes online but the only thing that fixed my issues w/ copying and pasting(Especially in IntelliJ) was to install xdotool
https://www.howtoinstall.co/en/ubuntu/xenial/xdotool
Especially if you have Keepass installed.
I tried many fixes online but the only thing that fixed my issues w/ copying and pasting(Especially in IntelliJ) was to install xdotool
https://www.howtoinstall.co/en/ubuntu/xenial/xdotool
Especially if you have Keepass installed.
answered Mar 28 '17 at 14:45
Chris AdamsChris Adams
112
112
1
Please post instructions instead of links to instructions. Links can stop working in the future.
– Dorian
Mar 28 '17 at 17:53
Wow, this really works
– luboskrnac
Apr 7 '17 at 12:15
add a comment |
1
Please post instructions instead of links to instructions. Links can stop working in the future.
– Dorian
Mar 28 '17 at 17:53
Wow, this really works
– luboskrnac
Apr 7 '17 at 12:15
1
1
Please post instructions instead of links to instructions. Links can stop working in the future.
– Dorian
Mar 28 '17 at 17:53
Please post instructions instead of links to instructions. Links can stop working in the future.
– Dorian
Mar 28 '17 at 17:53
Wow, this really works
– luboskrnac
Apr 7 '17 at 12:15
Wow, this really works
– luboskrnac
Apr 7 '17 at 12:15
add a comment |
This helped me:
sudo add-apt-repository ppa:attente/java-non-latin-shortcuts
sudo apt-get update
sudo apt-get dist-upgrade
restart unity-settings-daemon
UPD: more info here https://gist.github.com/d3zorg/3f71ee24b1a0a288ce27
1
Welcome to Ask Ubuntu! ;-) Could you please edit your answer and explain why OP should install a PPA, what it does, how it works, ... ;-)
– Fabby
Oct 3 '18 at 19:34
add a comment |
This helped me:
sudo add-apt-repository ppa:attente/java-non-latin-shortcuts
sudo apt-get update
sudo apt-get dist-upgrade
restart unity-settings-daemon
UPD: more info here https://gist.github.com/d3zorg/3f71ee24b1a0a288ce27
1
Welcome to Ask Ubuntu! ;-) Could you please edit your answer and explain why OP should install a PPA, what it does, how it works, ... ;-)
– Fabby
Oct 3 '18 at 19:34
add a comment |
This helped me:
sudo add-apt-repository ppa:attente/java-non-latin-shortcuts
sudo apt-get update
sudo apt-get dist-upgrade
restart unity-settings-daemon
UPD: more info here https://gist.github.com/d3zorg/3f71ee24b1a0a288ce27
This helped me:
sudo add-apt-repository ppa:attente/java-non-latin-shortcuts
sudo apt-get update
sudo apt-get dist-upgrade
restart unity-settings-daemon
UPD: more info here https://gist.github.com/d3zorg/3f71ee24b1a0a288ce27
edited Oct 4 '18 at 8:31
answered Oct 3 '18 at 14:55
Max GabderakhmanovMax Gabderakhmanov
1012
1012
1
Welcome to Ask Ubuntu! ;-) Could you please edit your answer and explain why OP should install a PPA, what it does, how it works, ... ;-)
– Fabby
Oct 3 '18 at 19:34
add a comment |
1
Welcome to Ask Ubuntu! ;-) Could you please edit your answer and explain why OP should install a PPA, what it does, how it works, ... ;-)
– Fabby
Oct 3 '18 at 19:34
1
1
Welcome to Ask Ubuntu! ;-) Could you please edit your answer and explain why OP should install a PPA, what it does, how it works, ... ;-)
– Fabby
Oct 3 '18 at 19:34
Welcome to Ask Ubuntu! ;-) Could you please edit your answer and explain why OP should install a PPA, what it does, how it works, ... ;-)
– Fabby
Oct 3 '18 at 19:34
add a comment |
Go to Tools and unclick Vim Emulator and your problems should go away. It worked for me - community version 2018.3
add a comment |
Go to Tools and unclick Vim Emulator and your problems should go away. It worked for me - community version 2018.3
add a comment |
Go to Tools and unclick Vim Emulator and your problems should go away. It worked for me - community version 2018.3
Go to Tools and unclick Vim Emulator and your problems should go away. It worked for me - community version 2018.3
answered Feb 9 at 3:44
sdforsdfor
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f568662%2fctrl-v-and-ctrl-c-doesnt-work-in-intellij-idea-14-0-2%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
Click on the 'Edit' option and see if there come options like 'copy' and 'paste' or not.If there are 'copy' and 'paste' options,use them.See and report if they work or not.
– saptarshi nag
Jan 4 '15 at 7:50
I had this problem when working in a different language. All I had to do was revert back to English.
– Yonatan Simson
Sep 14 '16 at 5:33