참고: 저는 이미 답을 알고 있습니다. 단지 제 경험을 공유하는 것뿐입니다.
일부 gedit 플러그인, 특히 Snippets 플러그인은 Lubuntu에서 작동하지 않습니다. 도구->조각 관리를 클릭하면 다음 오류가 발생합니다.
Traceback (most recent call last):
File "/usr/lib/i386-linux-gnu/gedit/plugins/snippets/document.py", line 95, in do_deactivate
self.disconnect_signals(self.view)
File "/usr/lib/python3/dist-packages/gi/_gobject/propertyhelper.py", line 214, in __get__
value = instance.get_property(self.name)
TypeError: unknown type (null)
답변1
gedit에는 Unity 또는 GNOME 이외의 환경에서 사용하려고 할 때 나타나는 여러 가지 필수 종속성이 누락된 것으로 보입니다.
이 문제를 해결하려면 다음을 설치하기만 하면 됩니다.
sudo apt-get install python3-gi-cairo
답변2
제거하고 다시 설치한 후에는 효과가 있었습니다.
sudo apt-get remove gedit
sudo apt-get install gedit
이 두 가지 명령줄을 사용해 보세요. 어쩌면 여러분에게도 효과가 있을 것입니다. :)