Support the "a" flag in 'guioptions'

This commit is contained in:
Bjorn Winckler
2009-12-03 18:07:10 +01:00
parent e98f8a27c2
commit 345ed7ab01
+5 -1
View File
@@ -603,7 +603,11 @@ clip_mch_lose_selection(VimClipboard *cbd)
int
clip_mch_own_selection(VimClipboard *cbd)
{
return 0;
// This is called whenever there is a new selection and 'guioptions'
// contains the "a" flag (automatically copy selection). Return TRUE, else
// the "a" flag does nothing. Note that there is no concept of "ownership"
// of the clipboard in Mac OS X.
return TRUE;
}