mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.1b
This commit is contained in:
parent
a38edcde16
commit
933eb39d67
@ -1,4 +1,4 @@
|
|||||||
*fold.txt* For Vim version 7.1a. Last change: 2006 Mar 29
|
*fold.txt* For Vim version 7.1b. Last change: 2006 Mar 29
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*if_cscop.txt* For Vim version 7.1a. Last change: 2005 Mar 29
|
*if_cscop.txt* For Vim version 7.1b. Last change: 2005 Mar 29
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Andy Kahn
|
VIM REFERENCE MANUAL by Andy Kahn
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*os_390.txt* For Vim version 7.1a. Last change: 2005 Mar 29
|
*os_390.txt* For Vim version 7.1b. Last change: 2005 Mar 29
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Ralf Schandl
|
VIM REFERENCE MANUAL by Ralf Schandl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*undo.txt* For Vim version 7.1a. Last change: 2006 Apr 30
|
*undo.txt* For Vim version 7.1b. Last change: 2006 Apr 30
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*usr_26.txt* For Vim version 7.1a. Last change: 2006 Apr 24
|
*usr_26.txt* For Vim version 7.1b. Last change: 2006 Apr 24
|
||||||
|
|
||||||
VIM USER MANUAL - by Bram Moolenaar
|
VIM USER MANUAL - by Bram Moolenaar
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
" Vim indent file
|
" Vim indent file
|
||||||
" Language: Eterm configuration file
|
" Language: Eterm configuration file
|
||||||
" Maintainer: Nikolai Weibull <now@bitwi.se>
|
" Maintainer: Nikolai Weibull <now@bitwi.se>
|
||||||
" Latest Revision: 2006-04-19
|
" Latest Revision: 2006-12-20
|
||||||
|
|
||||||
if exists("b:did_indent")
|
if exists("b:did_indent")
|
||||||
finish
|
finish
|
||||||
@ -10,6 +10,7 @@ let b:did_indent = 1
|
|||||||
|
|
||||||
setlocal indentexpr=GetEtermIndent()
|
setlocal indentexpr=GetEtermIndent()
|
||||||
setlocal indentkeys=!^F,o,O,=end
|
setlocal indentkeys=!^F,o,O,=end
|
||||||
|
setlocal nosmartindent
|
||||||
|
|
||||||
if exists("*GetEtermIndent")
|
if exists("*GetEtermIndent")
|
||||||
finish
|
finish
|
||||||
|
@ -111,7 +111,7 @@ error:
|
|||||||
|
|
||||||
// Return the dispatch id of a named service
|
// Return the dispatch id of a named service
|
||||||
// This id can be used in subsequent calls to GetProperty (), SetProperty () and
|
// This id can be used in subsequent calls to GetProperty (), SetProperty () and
|
||||||
// Method (). This is the prefered method when performance is important.
|
// Method (). This is the preferred method when performance is important.
|
||||||
//
|
//
|
||||||
DISPID COleAutomationControl::GetDispatchId (char* Name)
|
DISPID COleAutomationControl::GetDispatchId (char* Name)
|
||||||
{
|
{
|
||||||
@ -135,7 +135,7 @@ DISPID COleAutomationControl::GetDispatchId (char* Name)
|
|||||||
// Name Name of property or method.
|
// Name Name of property or method.
|
||||||
//
|
//
|
||||||
// Format Format string that describes the variable list of parameters that
|
// Format Format string that describes the variable list of parameters that
|
||||||
// follows. The format string can contain the follwoing characters.
|
// follows. The format string can contain the following characters.
|
||||||
// & = mark the following format character as VT_BYREF
|
// & = mark the following format character as VT_BYREF
|
||||||
// B = VT_BOOL
|
// B = VT_BOOL
|
||||||
// i = VT_I2
|
// i = VT_I2
|
||||||
|
@ -15,9 +15,10 @@
|
|||||||
* (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
|
* (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
|
||||||
* Daniel Elstner <daniel.elstner@gmx.net>
|
* Daniel Elstner <daniel.elstner@gmx.net>
|
||||||
*
|
*
|
||||||
* This is a special purspose container widget, which manages arbitrary childs
|
* This is a special purpose container widget, which manages arbitrary
|
||||||
* at arbitrary positions width arbitrary sizes. This finally puts an end on
|
* children at arbitrary positions width arbitrary sizes. This finally puts
|
||||||
* our resizement problems with which we where struggling for such a long time.
|
* an end on our resize problems with which we where struggling for such a
|
||||||
|
* long time.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "vim.h"
|
#include "vim.h"
|
||||||
|
@ -1043,7 +1043,7 @@ gui_motif_add_actext(menu)
|
|||||||
{
|
{
|
||||||
XmString label;
|
XmString label;
|
||||||
|
|
||||||
/* Add accelrator text, if there is one */
|
/* Add accelerator text, if there is one */
|
||||||
if (menu->actext != NULL && menu->id != (Widget)0)
|
if (menu->actext != NULL && menu->id != (Widget)0)
|
||||||
{
|
{
|
||||||
label = XmStringCreate((char *)menu->actext, STRING_TAG);
|
label = XmStringCreate((char *)menu->actext, STRING_TAG);
|
||||||
@ -2531,7 +2531,7 @@ create_pixmap_label(parent, name, data, args, arg)
|
|||||||
label = XmCreateLabelGadget(parent, name, args, arg);
|
label = XmCreateLabelGadget(parent, name, args, arg);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We need to be carefull here, since in case of gadgets, there is
|
* We need to be careful here, since in case of gadgets, there is
|
||||||
* no way to get the background color directly from the widget itself.
|
* no way to get the background color directly from the widget itself.
|
||||||
* In such cases we get it from The Core part of his parent instead.
|
* In such cases we get it from The Core part of his parent instead.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user