Uma alternativa para instalar o par de travão para geany 1.23.21

1

Provo instalar este plugin seguindo as instruções deste post: HTML par tag destaca alternativa para o editor Geany no Ubuntu 14.04

mas quando eu escrevo

sed -i 's/1.24/1.23/' wscript

diz-me isto:

fatal: destination path 'geany-plugins' already exists and is not an empty directory.

O que posso fazer?

depois

./waf configure --enable-plugins=pairtaghighlighter

parece-me isto:

Setting top to                           : /tmp/geany-plugins 
Setting out to                           : /tmp/geany-plugins/_build_ 
Checking for waf version in 1.6.1-1.7.0  : ok 
Checking for 'gcc' (c compiler)          : /usr/bin/gcc 
Checking for program pkg-config          : /usr/bin/pkg-config 
Checking for 'gtk+-2.0' >= 2.16.0        : not found 
The configuration failed
(complete log in /tmp/geany-plugins/_build_/config.log)
    
por Xalsar 30.04.2015 / 14:17

1 resposta

2
  1. Isso não tem nada a ver com o sed -i 's/1.24/1.23/' wscript .

    Esta é uma mensagem de erro do Git. Você inicia o comando git clone https://github.com/geany/geany-plugins.git várias vezes. Então Git reclama.

    Exemplo:

    $ git clone https://github.com/geany/geany-plugins.git
    
    Cloning into 'geany-plugins'...
    remote: Counting objects: 15302, done.
    remote: Compressing objects: 100% (15/15), done.
    remote: Total 15302 (delta 1), reused 0 (delta 0), pack-reused 15287
    Receiving objects: 100% (15302/15302), 14.59 MiB | 1.17 MiB/s, done.
    Resolving deltas: 100% (8708/8708), done.
    Checking connectivity... done.
    
    $ git clone https://github.com/geany/geany-plugins.git
    
    fatal: destination path 'geany-plugins' already exists and is not an empty directory.
    
  2. Instale a biblioteca de desenvolvimento do gtk2:

    sudo apt-get install libgtk2.0-dev
    

    e novamente:

    ./waf configure --enable-plugins=pairtaghighlighter
    
por A.B. 30.04.2015 / 15:22