t3hnar / CmdSupport

Cmd support plugin for Intellij Idea
Apache License 2.0
49 stars 10 forks source link

Error: could not match input #14

Closed thebjorn closed 9 years ago

thebjorn commented 9 years ago

When pressing the colon before the cursor

image

I get the error shown in the eventlog (could not match input). I've pasted the entire file at the bottom.

I found this error when trying to add a TODO list item (they don't show up in the TODO tab)..

I'm using PyCharm 4.0 EAP:

image

file run.bat

@echo off
rem run django dev server for a site..

if not defined SRV (
    call ..\gosrv
)

if "%1" == "" (
    echo "Usage run ls | sitename"
    goto:eof
)

if not defined VIRTUAL_ENV (
    echo "You must activate a virtualenv first (e.g. workon dev)"
    goto :eof
)

if "%1" == "ls" (
    rem dir /A=D %SRV%\www
    pushd %SRV%\www
    find . -maxdepth 1 -type d | tr "./" "  " | grep -v default
    popd
    goto :eof
)

set DK_ACTIVE_SITE=%1
set DJANGO_SETTINGS_MODULE=%DK_ACTIVE_SITE%.settings

cd /d %SRV%\www\%DK_ACTIVE_SITE%

set LOGIDR=%SRV%\www\%DK_ACTIVE_SITE% \logs
set PYTHONPATH=%SRV%\www
set DKROOT=%SRV%\src\datakortet

set "comment=TODO: add sitename.local to hosts?"
set "comment=TODO: add site to apache/wsgi-express?"

rem TODO: something
:
python manage.py runserver