X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type :content-transfer-encoding; q=dns; s=default; b=W3r8b2+MCOzUcekU Fq+0HmFZOz6Wfpu9+DxaKJaWR4dGjyq3uXcsr2ClaH2zcsRZYaHSsURf+KA5WlsX LD2NJ5sWdaA1Wm3EYMcy3IU160MYX9Mo2p8YVQzcFVuqTIGMy7go2oQ6A2ri3duB TOBaYgC91l4ZYNDopJ/HltVlbBk= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type :content-transfer-encoding; s=default; bh=yZC86z6EsKztUsVwqsEHC5 O8BZo=; b=NS7xwlzltPQTQ22VwjSHNzQlVT8IVUJl9LlL16ftf6BcX/j+RZQ+7K +PrAEXLxa9R9SDpcafuEZBPy91NXogM84iAKp50jpKlW44Gy1x9bBiZKQ8mf7j13 tfiZH2AG0fZ+5FjBdTicgncnGPmM/gOhSFfDN68kTyPSzVCczUQRE= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL,BAYES_20 autolearn=ham version=3.3.2 X-HELO: kautler.net X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=Ovdys5S2Y09PWarjw1CHwEGoXa24dFXzrrkMW2EwlMM=; b=TfmTMSwmt1MrD8dGhCuluyblIELACMxhZA0+JIzxF/pUTuHaBfOUclbncv4n84J0Aj sad5OJXK3Fwyhr/QGXqS8jw3B0ZKlXNG1DoDlTYnfUWZuClQ7nz6ZIa9RUC3gegcB6in jj6ZeHQqqi0IYcbRmoiwZw/VRks0VOEEEGdnrNILkpb8QdRhHHLKUSfzV8IetzI8YONh +8Imu0vow3A0gmqWOubJDKiumO2XWpYzfAAOjZbqjZy56JPE8Vl86jtPCta0aeMYO4wl i1K6SRuA/NU5zTbRdw94FGZ5GxTziGYPdueC4ShhpI3RLGRLC/AxzzDB7feZ2mxQ+JbT Gd9g== X-Received: by 10.229.134.200 with SMTP id k8mr8051138qct.16.1386349657904; Fri, 06 Dec 2013 09:07:37 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: <52096B42 DOT 8010702 AT Kautler DOT net> From: =?ISO-8859-1?Q?Bj=F6rn_Kautler?= Date: Fri, 6 Dec 2013 18:07:17 +0100 Message-ID: Subject: Re: [ANNOUNCEMENT] Updated: vim-7.3.1152-1 To: cygwin AT cygwin DOT com Cc: yselkowitz AT users DOT sourceforge DOT net Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id rB6H8ARr003340 Do my messages come through at all? No-one answers or cares about this one. :-( 2013/9/16 Björn Kautler : > Hi Yaakov, > > is this fixed in the new Vim release? > > Regards > > 2013/8/13 Björn Kautler : >> Hi Yaakov, >> >> I'm wondering that noone mentioned it before, but maybe everyone is using ~/.vimrc or they were not as puzzled as me and tried to find out what went wrong. >> >> After updating to your latest vim build 1152, vim started to behave really unexpected, no syntax coloring, only one undo step and doing undo again did a redo, ... >> >> In the meantime I found out that your 7.3-virc.patch is the culprit, it replaces >> >> # define SYS_VIMRC_FILE "$VIM/vimrc" >> >> by >> >> # ifdef FEAT_NORMAL >> # define SYS_VIMRC_FILE "/etc/vimrc" >> # else >> # define SYS_VIMRC_FILE "/etc/virc" >> # endif >> >> which changes system vimrc file from /etc/vim/vimrc to /etc/vimrc for normal vim usage. >> This way no options are set and vim starts its strange behaviour. >> >> I guess the new block of code should probably more likely be >> >> # ifdef FEAT_NORMAL >> # define SYS_VIMRC_FILE "$VIM/vimrc" >> # else >> # define SYS_VIMRC_FILE "$VIM/virc" >> # endif >> >> or at most >> >> # ifdef FEAT_NORMAL >> # define SYS_VIMRC_FILE "$VIM/vimrc" >> # else >> # define SYS_VIMRC_FILE "/etc/virc" >> # endif >> >> Regards >> Björn >> >> >> >> Am 11.06.2013 00:47, schrieb Yaakov (Cygwin/X): >>> The following packages have been updated for the Cygwin distribution: >>> >>> *** vim-7.3.1152-1 >>> *** vim-common-7.3.1152-1 >>> *** vim-minimal-7.3.1152-1 >>> *** xxd-7.3.1152-1 >>> *** gvim-7.3.1152-1 >>> >>> Vim is an advanced text editor that seeks to provide the power of the >>> de-facto Unix editor 'Vi', with a more complete feature set and a choice >>> of terminal and GTK+ interfaces. >>> >>> This is an update to last week's upstream patchset, with the following packaging changes: >>> >>> * The 'vi' binary now uses ~/.virc and /etc/virc instead of vimrc to avoid errors with configuration options not supported by 'vi'. >>> >>> * gvim on x86_64 uses the GTK+ interface. >>> >> -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple