mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
Support the "a" flag in 'guioptions'
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user