geditで現在選択されている行をコピーするショートカットキーが必要です。他の多くの編集者はこの目的でCtrl+Dまたは++を使用しますが、geditは異なります。CtrlShiftD
デフォルトの動作は次のとおりです。
- Ctrl+ D: 行を削除
- Ctrl+ Shift+ D:GTKチェッカーを開く
他のショートカットが私が実際に望むことをしている限り、現在の両方の動作は大丈夫です。
だから私が見たこの回答表示されている場合は、実際にgeditバイナリにパッチを適用できます。しかし、私はそうしたくありません。なぜなら、バイナリにパッチを適用することは、おそらく(アップデートとバイナリの変更を考慮して)できる最悪の解決策であるからです。また、この質問では、「行削除」ショートカットのみが削除され、存在しなくなったプラグインを使用して「行複製」ショートカットが追加されました。
それでは、「この行のコピー」アクションをgeditにどのように配置できますか?
答え1
これ入れる最近、他の回答が更新され、一度インストールされたら使用できるというコメントが述べられています。Ctrl+Shift+D行または選択項目を複製します。
Ubuntu 16.04のgedit 3.18.3でこれをテストしましたが、すべてのバージョンで動作します。>=3.14.0これはやや疑わしいですが、gedit開発者はマイナーバージョンに大きな変更を加えることを恥じていないので(または彼らはセマンティックバージョン管理)プラグイン開発に関する最新のドキュメントはないようです。
答え2
まだ答えを探していますか?私はPythonに慣れていないので、確かではありませんが、正しいと思います。
1. Duplicateline.pyファイルを編集する必要があります。gedit3プラグインこの方法:
import gettext
from gi.repository import GObject, Gtk, Gio, Gedit
ACCELERATOR = ['<Alt>d']
#class DuplicateLineWindowActivatable(GObject.Object, Gedit.WindowActivatable):
class DuplicateLineAppActivatable(GObject.Object, Gedit.AppActivatable):
__gtype_name__ = "DuplicateLineWindowActivatable"
app = GObject.Property(type=Gedit.App)
def __init__(self):
GObject.Object.__init__(self)
def do_activate(self):
#self._insert_menu()
self.app.set_accels_for_action("win.duplicate", ACCELERATOR)
self.menu_ext = self.extend_menu("tools-section")
item = Gio.MenuItem.new(_("Duplicate Line"), "win.duplicate")
self.menu_ext.prepend_menu_item(item)
def do_deactivate(self):
#self._remove_menu()
self.app.set_accels_for_action("win.duplicate", [])
self.menu_ext = None
#self._action_group = None
#def _insert_menu(self):
#manager = self.window.get_ui_manager()
# Add our menu action and set ctrl+shift+D to activate.
#self._action_group = Gtk.ActionGroup("DuplicateLinePluginActions")
#self._action_group.add_actions([(
#"DuplicateLine",
#None,
#_("Duplicate Line"),
#"d",
#_("Duplicate current line, current selection or selected lines"),
#self.on_duplicate_line_activate
#)])
#manager.insert_action_group(self._action_group, -1)
#self._ui_id = manager.add_ui_from_string(ui_str)
#def _remove_menu(self):
#manager = self.window.get_ui_manager()
#manager.remove_ui(self._ui_id)
#manager.remove_action_group(self._action_group)
#manager.ensure_update()
def do_update_state(self):
#self._action_group.set_sensitive(self.window.get_active_document() != None)
pass
class DuplicateLineWindowActivatable(GObject.Object, Gedit.WindowActivatable):
window = GObject.property(type=Gedit.Window)
def __init__(self):
GObject.Object.__init__(self)
self.settings = Gio.Settings.new("org.gnome.gedit.preferences.editor")
def do_activate(self):
action = Gio.SimpleAction(name="duplicate")
action.connect('activate', self.on_duplicate_line_activate)
self.window.add_action(action)
def on_duplicate_line_activate(self, action, user_data=None):
doc = self.window.get_active_document()
if not doc:
return
if doc.get_has_selection():
# User has text selected, get bounds.
s, e = doc.get_selection_bounds()
l1 = s.get_line()
l2 = e.get_line()
if l1 != l2:
# Multi-lines selected. Grab the text, insert.
s.set_line_offset(0)
e.set_line_offset(e.get_chars_in_line())
text = doc.get_text(s, e, False)
if text[-1:] != '\n':
# Text doesn't have a new line at the end. Add one for the beginning of the next.
text = "\n" + text
doc.insert(e, text)
else:
# Same line selected. Grab the text, insert on same line after selection.
text = doc.get_text(s, e, False)
doc.move_mark_by_name("selection_bound", s)
doc.insert(e, text)
else:
# No selection made. Grab the current line the cursor is on, insert on new line.
s = doc.get_iter_at_mark(doc.get_insert())
e = doc.get_iter_at_mark(doc.get_insert())
s.set_line_offset(0)
if not e.ends_line():
e.forward_to_line_end()
text = "\n" + doc.get_text(s, e, False)
doc.insert(e, text)
2. Alt+D行をコピーします。ショートカットを変更できます。必要に応じて3D行「ACCELERATOR = ['<Alt> d']」を編集します。
3.少なくともgedit v。 3.14.3では動作します。