web-dev-qa-db-ja.com

geditで「重複行」ホットキーを取得するにはどうすればよいですか?

Geditで現在選択されている行を複製するためのショートカットキーが欲しいのですが。他の多くの編集者は Ctrl+D または Ctrl+Shift+D そのため、geditは異なります。

ここではデフォルトの動作:

  • Ctrl+D:行を削除します
  • Ctrl+Shift+D:GTKインスペクターを開く

他のホットキーで実際にやりたいことができる限り、現在の両方の動作で問題ありません。

だから私は この答え を見たところ、実際にgeditバイナリにパッチを適用できることが示されています。ただし、バイナリのパッチはおそらく実行可能な最悪の種類の回避策(更新とバイナリの変更を考える)であるため、これを実行したくありません。さらに、その質問では、「行の削除」ショートカットのみが削除され、「重複行」ショートカットがプラグインに追加されましたが、これはもう存在しません。

では、「この行を複製する」動作をgeditに取り込むにはどうすればよいですか?

6
rugk

コメントに記載されている plugin と他の回答が最近更新され、インストール後にCtrl + Shift + Dを使用していずれかを複製できるようになります行または選択。

私はそれをUbuntu 16.04のgedit 3.18.3でテストしましたが、gedit開発者は恥ずかしくないので少し疑わしいですが、どのバージョン> = 3.14.0でも動作するはずです。マイナーバージョン(または セマンティックバージョニング 以外のものに続く)に重大な変更を導入し、プラグイン開発に関する最新のドキュメントがないようです。

2
tmt

あなたはまだ答えを探していますか?私はPythonに慣れていないので、よくわかりませんが、私は正しいものを持っていると思います。
1。 plugin for gedit からduplicateline.pyファイルを次のように編集する必要があります。


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 行を複製します。ホットキーを変更できます-必要に応じて、3行目の「ACCELERATOR = ['<Alt> d']」を編集してください。
3。少なくとも、gedit v。3.14.3で動作します。