From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "typedeph ." Newsgroups: gmane.emacs.help Subject: Company Eclim remove-if error Date: Sat, 6 Dec 2014 14:10:41 -0500 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1417893096 25622 80.91.229.3 (6 Dec 2014 19:11:36 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 6 Dec 2014 19:11:36 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Dec 06 20:11:31 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XxKlO-0000Jq-SI for geh-help-gnu-emacs@m.gmane.org; Sat, 06 Dec 2014 20:11:31 +0100 Original-Received: from localhost ([::1]:55310 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XxKlO-0001DA-CN for geh-help-gnu-emacs@m.gmane.org; Sat, 06 Dec 2014 14:11:30 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36788) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XxKkj-0001CO-P0 for help-gnu-emacs@gnu.org; Sat, 06 Dec 2014 14:10:54 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XxKke-0002gu-PO for help-gnu-emacs@gnu.org; Sat, 06 Dec 2014 14:10:49 -0500 Original-Received: from mail-lb0-x244.google.com ([2a00:1450:4010:c04::244]:57237) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XxKke-0002gq-EB for help-gnu-emacs@gnu.org; Sat, 06 Dec 2014 14:10:44 -0500 Original-Received: by mail-lb0-f196.google.com with SMTP id f15so486414lbj.11 for ; Sat, 06 Dec 2014 11:10:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=GSSRfGnGpJ1stWI5BsNNgqBD58rSZRekTv0QYBi46bk=; b=didPusxHV/K/4jpyCuy63sleLwp5g6E8mInZyG3YXhseW9fTTThBgAvSO32e2OuFDE lzffjYbpeolD94xdGsOp+o7YjcmKxMwQmcMaByRNM2XKG712creIkNGPsalUIYhfrU2g NFidL1xf/L6FkxfkGZNVWLxJU01y6LuYC/J0RAfkIA0A2htwc+5XOmfVui4U9QIsXSJi Ey6cP2LMGQ//t3PD+ELOecEuQJozBKpV98wmAt+H1H4XQQ7WXE6CTq1HJ1nrUW2lS3vn lH6lgpGAIdxVDyNtQHCMOXpNDwmkkF9/ZwQwMu7A7FSKSl6PhlOFGr2fngtTOx+0hUm4 f69g== X-Received: by 10.112.157.194 with SMTP id wo2mr8695430lbb.55.1417893041156; Sat, 06 Dec 2014 11:10:41 -0800 (PST) Original-Received: by 10.112.252.167 with HTTP; Sat, 6 Dec 2014 11:10:41 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::244 X-Mailman-Approved-At: Sat, 06 Dec 2014 14:11:20 -0500 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:101454 Archived-At: Hello, I'm a beginner in emacs and have been having trouble setting up this emacs eclim package for a while. Although I think I have successfully set up eclim I am unable to make company work for it. I have tried to follow the instructions on the emacs-eclim website as best as possible: install eclim, launch the eclimd server, install emacs-eclim and set up emacs-eclim. As I am a beginner my init.el is very short: (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/")) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/")) (package-initialize) (require 'evil) (evil-mode 1) (setq c-default-style "bsd" c-basic-offset 4) (require 'company) (add-hook 'after-init-hook 'global-company-mode) (custom-set-variables '(eclim-eclipse-dirs '("~/Apps/eclipse")) '(eclim-exectuable "~/Apps/eclipse/eclimd")) (setq eclimd-default-workspace "~/workspace") (require 'eclim) (require 'company-emacs-eclim) (company-emacs-eclim-setup) Can someone tell me what I'm doing wrong? I get an error the minute I add (company-emacs-eclim-setup)