nvim-hs-contrib-1.0.0.0: Haskell plugin backend for neovim

Copyright(c) Sebastian Witte
LicenseApache-2.0
Maintainerwoozletoff@gmail.com
Stabilityexperimental
PortabilityGHC
Safe HaskellNone
LanguageHaskell2010

Neovim.User.Input

Description

 

Synopsis

Documentation

input Source #

Arguments

:: String

Message to display

-> Maybe String

Input fiiled in

-> Maybe String

Completion mode

-> Neovim env (Either NeovimException Object) 

Helper function that calls the input() function of neovim.

askForDirectory Source #

Arguments

:: String

Message to put in front

-> Maybe FilePath

Prefilled text

-> Neovim env FilePath 

Prompt the user to specify a directory.

If the directory does not exist, ask the usere whether it should be created.

askForString Source #

Arguments

:: String

message to put in front

-> Maybe String

Prefilled text

-> Neovim env String