Giter Site home page Giter Site logo

fclojure.vim's People

Contributors

emanon001 avatar thinca avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

supermomonga

fclojure.vim's Issues

回答結果の parse に失敗する

https://www.4clojure.com/problem/53 にて、以下の内容で回答を行なった場合に発生する。

(fn [s]
    (last
      (sort-by count
               ((fn [s n c r]
                    (cond (empty? s) (conj r c)
                          (= (inc n) (first s)) (recur (rest s) (first s)
                                                       (apply conj c (if (empty? c) (vector n (first s)) (vector (first s)))) r)
                          :else (recur (rest s) (first s) [] (conj r c))))
                (rest s) (first s) [] []))))

空白を含んだパスで動作しない

diff --git a/autoload/fclojure/core.vim b/autoload/fclojure/core.vim
index c420a33..07f8bae 100644
--- a/autoload/fclojure/core.vim
+++ b/autoload/fclojure/core.vim
@@ -196,7 +196,7 @@ function! s:log_in_by_user_input() " {{{2
   " Note: Using Vital.Web.Http.post(), implicit redirect is performed.
   "       *log-in url* -> [problem-list url] or [log-in url]
   "       *log-in url* response is required.
-  let command = printf('%s %s -s -k -i -d user=%s -d pwd=%s -c %s',
+  let command = printf('%s %s -s -k -i -d user=%s -d pwd=%s -c "%s"',
         \              s:curl_command, s:get_url('log_in'),
         \              user_name, password, s:get_file_path('cookie'))
   " Response is only a header.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.