Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #=
- Este programa define gedit como el editor por defecto del REPL modificando la variable de entorno ENV["EDITOR"] durante el inicio de Julia. Cambiar "gedit" por otro ejecutable si se desea otro.
- Crea el archivo .juliarc.jl o añade una línea nueva si es que ya existe.
- =#
- archivo = joinpath(homedir(), ".juliarc.jl")
- f = IOStream
- if isfile(archivo)
- f = open(archivo, "a")
- else
- f = open(archivo, "w")
- end
- println(f, "\# Editor por defecto:")
- println(f, "ENV[\"EDITOR\"] = \"gedit\"")
- close(f)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement