0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

Missing piece for Mac console clipboard support. (Bjorn Winckler)

This commit is contained in:
Bram Moolenaar
2010-07-14 16:54:21 +02:00
parent cc448b373d
commit c8bbaa3b18
2 changed files with 4 additions and 3 deletions

View File

@@ -1098,9 +1098,6 @@ Vim 7.3:
- Conceal feature: no update when moving to another window. (Dominique Pelle, - Conceal feature: no update when moving to another window. (Dominique Pelle,
2010 Jul 5) Vince will look into it. 2010 Jul 5) Vince will look into it.
Patches to possibly include: Patches to possibly include:
- Patch for completion of ":find" arguments. (Nazri Ramliy, 2009 Feb 22, 26)
8 For ":find" and ":sfind" expand files found in 'path'.
Update 2009 Mar 28.
- Patch for vertical line at certain column position, 'guidecolumn' option. - Patch for vertical line at certain column position, 'guidecolumn' option.
(Pankaj Garg, 2009 Apr 14, aka Lone, Apr 15) (Pankaj Garg, 2009 Apr 14, aka Lone, Apr 15)
Update 2009 May 2, 'margincolumn' Update 2009 May 2, 'margincolumn'

View File

@@ -711,6 +711,10 @@ main
qnx_clip_init(); qnx_clip_init();
#endif #endif
#if defined(MACOS_X) && defined(FEAT_CLIPBOARD)
clip_init(TRUE);
#endif
#ifdef FEAT_XCLIPBOARD #ifdef FEAT_XCLIPBOARD
/* Start using the X clipboard, unless the GUI was started. */ /* Start using the X clipboard, unless the GUI was started. */
# ifdef FEAT_GUI # ifdef FEAT_GUI