我怎样才能获得用于缩放文本文件的gedit插件?

我想要gedit插件来缩放文件中的文本。当我点击Edit-preference-plugin时它会在下面显示消息,我找不到插件。 在此处输入图像描述

如果gedit缺少插件,请确保安装了gedit-plugins

 sudo apt-get install gedit-plugins 

之后,(您可能需要重新启动gedit)您将拥有一个名为“Text Size”的插件。
确保插件已启用,您可以使用Ctrl +鼠标滚轮“缩放”(即更改字体大小)。

gedit插件

这是gedit-plugins包中可用的插件列表

 $ apt-cache show gedit-plugins [...] The following plugins are included: * Git: Git differences * Bookmarks: Easy document navigation with bookmarks * Bracket Completion: Automatically adds closing brackets. * Character Map: Insert special characters just by clicking on them. * Code comment: Comment out or uncomment a selected block of code. * Color Picker: Pick a color from a dialog and insert its hexadecimal representation. * Color Scheme Editor: Source code color scheme editor * Commander: Command line interface for advanced editing * Dashboard: A Dashboard for new tabs * Draw Spaces: Draw Spaces and Tabs * Git: Git differences * Join/Split Lines: Join several lines or split long ones * Multi Edit: Edit document in multiple places at once * Smart Spaces: Forget you're not using tabulations. * SyncTeX: Synchronize between LaTeX and PDF with gedit and evince. * Embedded Terminal: Embed a terminal in the bottom pane. * Text Size: Easily increase and decrease the text size * Word Completion: Word completion using the completion framework [...] 

一些固定方式:

  1. $ sudo apt-get install gedit-plugins -y

转到gedit首选项>插件并激活您需要的内容。

如果未显示文字大小,则:

  1. 谷歌搜索:寻找gedit插件文字大小。 我发现了这个: https : //packages.debian.org/buster/gedit-plugin-text-size 。

    包存在。

    ***并这样做:

     $ sudo apt-get install gedit-plugin-text-size -y 

    然后重新打开gedit:preference> plugins。 你会看到“text-size”出现。

(这是为我工作的)。