From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6837E13838B for ; Mon, 6 Oct 2014 04:42:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD95BE0B00; Mon, 6 Oct 2014 04:42:25 +0000 (UTC) Received: from mail-la0-f51.google.com (mail-la0-f51.google.com [209.85.215.51]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70FC5E09FB for ; Mon, 6 Oct 2014 04:42:24 +0000 (UTC) Received: by mail-la0-f51.google.com with SMTP id ge10so3616076lab.24 for ; Sun, 05 Oct 2014 21:42:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=y/P1ike7yKwo2bLe8X66PJYBJNZfHCt8YQG6WmEYMGs=; b=ujT69SRsj9FRyVihUpq2gy2QQyKCmr4xTQs2Y/fHrsZMMH7ovQ+Ns8FqfLUfepbG+E qG2yd9gSPmGJFbyEtCAx67Xc+MbSANoR+ba81JJW/W+3abVTjmJ0nEloshd58qjul7Ys xFYP1G6+2eG0AN/wsQYBSCFXgYHpstgtH99TzrG0wikG6Pazi3GEs2DrA4zgzkTHSx53 rwY8sgrfyhOofM8jzu2x2glef10ZlcP2aHRFkL1qX37jnHIvWuVyT9/JAPbzdhvPXdZM OnO4LyDF4MMEic3y4RHGhmLbPlT6PDs6zaKiaJJwQD9c9MZ07VAD2Zr8rNOySqTw41kQ qO2A== Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 X-Received: by 10.112.147.74 with SMTP id ti10mr21046419lbb.29.1412570542562; Sun, 05 Oct 2014 21:42:22 -0700 (PDT) Received: by 10.112.77.166 with HTTP; Sun, 5 Oct 2014 21:42:22 -0700 (PDT) In-Reply-To: <54321837.2610700a.06c5.46a6@mx.google.com> References: <54321837.2610700a.06c5.46a6@mx.google.com> Date: Sun, 5 Oct 2014 22:42:22 -0600 Message-ID: Subject: Re: [gentoo-user] Was Vim compiled with +eval feature? From: =?UTF-8?Q?Jc_Garc=C3=ADa?= To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset=UTF-8 X-Archives-Salt: c2382b07-1f2e-42ed-b0e7-ea7c15ae3e37 X-Archives-Hash: 72394e877fe68d4a3cc4d1abc9131446 2014-10-05 22:18 GMT-06:00 Gevisz : > I have downloaded the snippet plugin from > http://www.vim.org/scripts/script.php?script_id=361 > and have done all the steps described there to > install it but, unfortunately, it does not work. > Stop installing vim plug-ins manually. use one of the plug-in installers out there, pathogen[1] is really nice and easy to use, basically you just do 'git clone' the repo of the plug-in in ~/.vim/bundle/ and have this at the top of your .vimrc execute pathogen#infect() Plus you can upgrade your plugins easily 'git fetch && git pull' (I made a small script that handles this for any plug-ins I have installed) I also use the snippet[2] plugin, and cloned/upgrade it from github. [1] https://github.com/tpope/vim-pathogen [2] https://github.com/honza/vim-snippets