read-editor alternatives and similar packages
Based on the "read" category.
Alternatively, view read-editor alternatives based on common mentions on social networks and blogs.
Do you think we are missing an alternative of read-editor or a related project?
README
haskell-read-editor
Opens a temporary file on the system's EDITOR and returns the resulting edits
Published to hackage as read-editor
.
Usage
module Main where
import System.ReadEditor
main :: IO ()
main = do
putStrLn ">>> Opening editor for you to write me some content"
content <- readEditor
putStrLn ">>> You wrote:"
putStrLn content
Reading edits of existing content
module Main where
import System.ReadEditor
main :: IO ()
main = do
putStrLn ">>> Opening editor for you to write me some content"
content <- readEditorWith "Some stuff that's already here"
putStrLn ">>> You wrote:"
putStrLn content
Support through CI
Travis-CI is building this package with GHC versions 7.6, 7.8 and 7.10. If the build status is green, they should all be supported. Check the project page to see more.
License
This code is licensed under the MIT license for Pedro Tacla Yamada. For more information please refer to the LICENSE file.
Donations
Would you like to buy me a beer? Send bitcoin to 3JjxJydvoJjTrhLL86LGMc8cNB16pTAF3y
*Note that all licence references and agreements mentioned in the read-editor README section above
are relevant to that project's source code only.