My variable does not include all copied text using sublime.get_clipboard() sublime text plugin
I'm trying to create a sublime text 3 plugin that copies code from files like .html, .css, .js & .php and then pastes it in a txt document.
My problem is that sometimes when I copy code from a document with a lot of code and paste it into a text document, some of the code disappears.
import sublime
import sublime_plugin
def save_code(file):
sublime.active_window().active_view().set_status("","Your file is
saved inside _templates " + file + "!")
text_file = open("path_to_file/_templates"+file, "w")
my_copy = str(sublime.get_clipboard())
text_file.write("%s" % my_copy)
text_file.close()
class MycopypasteCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.window().show_input_panel("Add
filename:","",save_code,None,None)
python sublimetext3
add a comment |
I'm trying to create a sublime text 3 plugin that copies code from files like .html, .css, .js & .php and then pastes it in a txt document.
My problem is that sometimes when I copy code from a document with a lot of code and paste it into a text document, some of the code disappears.
import sublime
import sublime_plugin
def save_code(file):
sublime.active_window().active_view().set_status("","Your file is
saved inside _templates " + file + "!")
text_file = open("path_to_file/_templates"+file, "w")
my_copy = str(sublime.get_clipboard())
text_file.write("%s" % my_copy)
text_file.close()
class MycopypasteCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.window().show_input_panel("Add
filename:","",save_code,None,None)
python sublimetext3
add a comment |
I'm trying to create a sublime text 3 plugin that copies code from files like .html, .css, .js & .php and then pastes it in a txt document.
My problem is that sometimes when I copy code from a document with a lot of code and paste it into a text document, some of the code disappears.
import sublime
import sublime_plugin
def save_code(file):
sublime.active_window().active_view().set_status("","Your file is
saved inside _templates " + file + "!")
text_file = open("path_to_file/_templates"+file, "w")
my_copy = str(sublime.get_clipboard())
text_file.write("%s" % my_copy)
text_file.close()
class MycopypasteCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.window().show_input_panel("Add
filename:","",save_code,None,None)
python sublimetext3
I'm trying to create a sublime text 3 plugin that copies code from files like .html, .css, .js & .php and then pastes it in a txt document.
My problem is that sometimes when I copy code from a document with a lot of code and paste it into a text document, some of the code disappears.
import sublime
import sublime_plugin
def save_code(file):
sublime.active_window().active_view().set_status("","Your file is
saved inside _templates " + file + "!")
text_file = open("path_to_file/_templates"+file, "w")
my_copy = str(sublime.get_clipboard())
text_file.write("%s" % my_copy)
text_file.close()
class MycopypasteCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.window().show_input_panel("Add
filename:","",save_code,None,None)
python sublimetext3
python sublimetext3
asked Nov 1 at 20:21
Avoka94
227
227
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Finally I found a solution. My problem was that when I copied text that contained "Åäö", text_file.write("%s" % my_copy) couldn't write to file. My solution was simpel. Just need 2 add encoding="utf-8" at the end of open("path_to_file, "w", open("path_to_file/_templates"+file, "w", encoding="utf-8")
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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%2fstackoverflow.com%2fquestions%2f53108814%2fmy-variable-does-not-include-all-copied-text-using-sublime-get-clipboard-subli%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
Finally I found a solution. My problem was that when I copied text that contained "Åäö", text_file.write("%s" % my_copy) couldn't write to file. My solution was simpel. Just need 2 add encoding="utf-8" at the end of open("path_to_file, "w", open("path_to_file/_templates"+file, "w", encoding="utf-8")
add a comment |
Finally I found a solution. My problem was that when I copied text that contained "Åäö", text_file.write("%s" % my_copy) couldn't write to file. My solution was simpel. Just need 2 add encoding="utf-8" at the end of open("path_to_file, "w", open("path_to_file/_templates"+file, "w", encoding="utf-8")
add a comment |
Finally I found a solution. My problem was that when I copied text that contained "Åäö", text_file.write("%s" % my_copy) couldn't write to file. My solution was simpel. Just need 2 add encoding="utf-8" at the end of open("path_to_file, "w", open("path_to_file/_templates"+file, "w", encoding="utf-8")
Finally I found a solution. My problem was that when I copied text that contained "Åäö", text_file.write("%s" % my_copy) couldn't write to file. My solution was simpel. Just need 2 add encoding="utf-8" at the end of open("path_to_file, "w", open("path_to_file/_templates"+file, "w", encoding="utf-8")
answered Nov 19 at 23:14
Avoka94
227
227
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2fstackoverflow.com%2fquestions%2f53108814%2fmy-variable-does-not-include-all-copied-text-using-sublime-get-clipboard-subli%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