Swi -Prolog设置了粘贴捷径

时间:2015-02-18 15:22:53

标签: swi-prolog

在Ubuntu中使用swi代码编辑器时,我似乎无法找到粘贴键盘快捷方式。在Windows中,我可以使用 ctrl + v 进行粘贴。我读到有时它是 ctrl + y ,但这不起作用。

选择后我也可以关闭自动复印吗?我希望能够选择用粘贴替换的东西。

我假设我需要编辑编辑器首选项,但我不确定如何更改这些?我试过删除主要感叹号。

! Skeleton preferences file for XPCE.  This file is loaded from       pce(Defaults).
!
! Format:
!
!   * Comment
!   Line-comment is started by the ! (exclamation mark)
!
!   * Default
!   <class>.<class-variable>: <value>
!
!   * Values
!   Values are in standard term-representation.  Chains may be written
!   as a Prolog list.  Values spanning multiple lines use \<NL> to continue
!   on the next line

! Basic style for keyboard accelerators.  On Windows the default is `cua'.
! (Common User Access), on Unix the default is `emacs'.  On Apple, the
! default is `apple', which is `emacs', but giving Command-v, Command-c
! and Command-s their usual meaning.  The Emacs equivalent can be accessed
! using ESC-v, etc.

 key_binding.style: cua
!key_binding.style: emacs
!key_binding.style: apple

! Creating a selection using  the  mouse   puts  the  selection into the
! copy/paste ! buffer by default.  This behaviour can be disabled with the
! preference below.

 editor.auto_copy:  @off

1 个答案:

答案 0 :(得分:0)

错:

 key_binding.style: cua
!key_binding.style: emacs
!key_binding.style: apple

右:

!key_binding.style: cua
 key_binding.style: emacs
!key_binding.style: apple

在Ubuntu中可能无法正确识别您的键盘布局。