UPDATE: There are a lot of Vim tips in the comments. Check them out!
I just took a short look at the (neo)vim docs, and I'm officially moving to (...
For further actions, you may consider blocking this person and/or reporting abuse
It's great that you changed to vim, seems very exciting! It would be cool if you could explain the process on how you changed to vim. Personally I use VSCode with vim extension for keyboard shortcuts. And I think it would be really cool to move fully to vim, but it's hard... first problem is file navigation. VSCode makes it so easy to open up files using ctrl/command + p. There might be some other stuff that I'd miss from VSCode when moving to vim but file navigation is my road blocker I guess.
How did you overcome that?
The process how I switched to vim? I don't get it. I just installed vim and started using it. No plugins installed yet
About file navigation, there is a builtin file explorer. Just
cd
to the parent folder, openvim
, and run the:Explore
command (I guess you know what the:commands
)You get something like this:
That actually answered my doubts. So no plugins for file navigation, explorer & buffers as well I suppose. Thanks!
You rarely need plugins. Most of the stuff is built in.
But there are plugins for vim as well.
Eg. for filenavigation (with a tree is nerdtree) but netrw (:Explorer) has as well a tree view ( cycling with i between the views)
For fuzzy search over files vim-fzf, i think it handles the open buffers as well, but if not - there is defnitly a plugin for it somewhere....
Yeah there are a lot of plugins.
I'm having some trouble installing plugins, especially because I'm using neovim which is a bit different.
vim-plug should be roughly the same on neovim and vim. Been using it for several years, can recommend.
Hmm, but I'm having trouble installing it on my outdated machine
What is the error you're getting?
Fixed it now, used vim-plug instead of vundle
Nice work, all the best.
If you are planning to use neovim version 0.5+ then try github.com/nvim-telescope/telescop..., Its cool.😎
I don't think I'll have such deep filesystems... I might try it once i get back to angular
wow, that is a cool plugin
It's an absolute beast. And I mean that in the best way. Pairing that with NeoVim 0.5+'s built in LSP features and you have a lot of VSCode's ground covered.
It's rekated to putty
Turutupa, You can use a popular plugin called NERDTree for file navigation. You can also use FZF. I have both installed because they work differently. NERDTree is good when you know where your file is. FZF is good when you know part of the file name.
Vim is highly configurable, I but you can get anything that works in VSCode to work in Vim. Check out this article:
Vimrc Configuration Guide - How to Customize Your Vim Code Editor with Mappings, Vimscript, Status Line, and More
freecodecamp.org/news/vimrc-config...
By the comments I've seen so far and what I have seen lately related to vim file navigation, I think a good combination would be
Gotta try it. Cheers for the help!
Thanks for the tip!
👋 I have been using VSCode with Vim extensions for a good couple of years now, and I have been successfully and happily switch to full Vim(neo) for the pass 5+ months . And to my surprise that VSC and Vim can be quite similar with little to no config at all 🎉
And as for file navigation with ctl/cmd + p, there is a vim extension call Ctrlp github.com/kien/ctrlp.vim
Hope it helps 😄
Nice, I'll check it out. I just feel like without a fast an easy way of switching between files it's a no go for me. This one seems like a good one though, thx for sharing :)
Something a lot of new Vim users don't know about is the
c-^
mapping which allows you to jump back and forth between the two most recently visited buffers. Added bonus the most recent buffers are local to windows/splits.I believe in VSC’ Vim it’s mapped to the ctl+i keybind🤔
didn't know about c-^ ! that's a good one, thanks!
There is plugin called Telescope u can try that. U will like it
github.com/nvim-telescope/telescop...
That's only for neovim, though. Other plugins like vim-fzf will work on regular vim too and give you a lot of the same functionality.
I've tried to convert to vim atleast thrice & had to falllback as I've different requirements compared to others (atleast I think so). I work with/modify multiple projects at a time as I work heavily on microservices built in an event driven system. So I really never have any memory of the function previously written nor the code.
I'll tell you what I expect from my editor (vscode now)
1) quick navigation(ctrl+p) - solved it using fzf/ctrl-p
2) quick search (ctrl+ shift+f) - hard to get around this
3) find function/variable by name(ctrl+t -> not that great but still does decent work. I'd prefer intellij's double shift, but it's an IDE so different story altogether) - didn't last till this point
4) easier to configure language support(vim-polyglot does well here but I'd like little less config)
5) sensible defaults(neovim does this I think)
6) easy navigation to error like from terminal
7) Goto definition - my biggest problem, I couldn't find something that'll work well for multiple languages. Coc.vim has some awesome support as per multiple articles but I couldn't find a single place to configure as it has a separate config file so it's a little tricky for me to manage.
8) find all references - I think vscode nails it. I know I could do a search/grep for text but I'd ideally have similar variables in same file as I do a lot of ETL/ELT.
9) simpler Emmet support - I did try installing the plug-in but could make it easy to go with.
10) snippet manager - I don't use snippets heavily but it's a nice to have feature
I'd love to know if there are better solutions for these issues which should make me switch to vim.
I did try using vscode vim but I work a lot in zenmode so search goes for a toss here as the activity bar gets hidden.
Hey man, you got very valid points and I must admit I didn't realize how much stuff I needed till I tried moving from VSCode to vim. Fortunately a lot of people replied to my comment and I have learnt a lot of good stuff in the past week.
I cloned Lunarvim (neovim based) which comes packed with a bunch of plugins and it does cover a lot of the stuff you mentioned. I've seen there are other known configs such as Lvim and Gleipnir, but I can't say which one is better or the differences between one and another.
I'll respond to some of the points you mentioned in case it helps you out.
1 - this is nicely done with Telescope
2 - still learning how to do this, but to be honest I don't think I'll need it so much anymore as I can search for references with Lsp saga (i think that's the name) or I believe you can use built-in vim funcionality by pressing gd
Points 3,7 and 8 slightly similar to this
(link to lsp saga: github.com/glepnir/lspsaga.nvim )
4- language support is a pain in the ass, luckily lunarvim also covers it
I do enjoy a lot working with VSCode + vim plugin though and I 100% understand why you'd stick with VSCode.
Thanks for sharing your experience!
Thanks I'll checkout the resources mentioned. All the best to all
2/ is a simple git grep could make the job ?
3/6/7/8/ I think it depends on the quality of your LSP, I'm happy of Ale : bind AleGoToDefinition ; AleFindReference ; github.com/dense-analysis/ale#5xi-...
Then just configure your preferred LSP for each language you use.
9/ I never get bothered by Emmet, so I don't get your concern (except on vscode)
10/ I think ultisnippet is nice, I have to check my config
I will have to spend some time figuring that out then. I am not one of those super person's who become productive within a week. May be I need to figure it out.
I am not that great with color schemes & all so I would like some nice color scheme recommendations as well.
There are a lot of built in ones. Try desert.
Sure I'll check it out. Thanks
I'm starting to remake and clean my full config, 'cause I would like to switch to nvim. So I can share my dot config, once it will be done.
There are lots of plugins you can use for finding files. The most popular right now is fzf, give it a shot, I'm sure it can beat your VSCode workflow in a few days of customization/learning :P
I personally use ctrlp + ripgrep
oh man... I thought it would never be possible to fully move to vim... but someone shared me lunarvim (github.com/ChristianChiarulli/Luna...) which comes with telescope and it is a beast
Prebuilt configurations are great for getting started. Once you are used to it, maybe after a few years, consider trying to customize it and remove what you don't need/want. Read the documentation and learn if there's a way you can replace a plugin with just native Vim functionality. And eventually, try writing your own config from scratch. That's where Vim shines. But it's not an easy process ^^;
Totally agree. Some people suggest to start from scratch your own config, but I feel like it has been a way better introduction to vim using pre-built configs than having to create one myself without understanding a thing. At least now I have a decent notion from the time I've spent setting up lunarvim + tweaking some stuff to accommodate to my needs.
The most underestimated vim's functionality that we should teach to beginners is vim session, allowing to save your session like any IDE !
stackoverflow.com/questions/164261...
Hey Yoann, how do you use vim sessions? And I don't mean like what commands you use or anything like that. More like, how you use vim sessions in your workflow?
I just use it simply, I have quickly a lot of tabs opened, so when I have to change the project on which I'm working or when I shutdown then I save the session at the root of the project. But it could be interesting to save it automatically, once I screwed and killed the vim process and I lost a dozen of open tabs and the workflow that went with it ^^'
Rarely, I work on more than one functionality at the same time, then I use and save 2 sessions in the same project.
Checkout NerdTree plugin . I use a combination of fzf and nerdtree to navigate and its blazinglyfast compared to mouse switching. Combine all of them with a multiplex terminal like kitty or tmux, you are now a rocket.
Edit : Also, dont forget about vifm
I see that combination working for me. What I don't fully see is what it has to offer that VSCode + vim extension already offers. I also have ctrl + p to open files fast in VSCode. Plus configuration is way easier in VSCode, for example, one thing I really like in VSCode is being able to set line height so code isn't so cramped together.
Another annoying one is syntax highlighting. Last time I used vim it wouldn't recognize React + Typescript (tsx), so then I have to spend a bunch of time just to be able to have that working :/
My feeling is to stay with VSCode and use vim for fast editing.
thanks for adding vifm, didn't know that one
Ya , for a web developer, VS Code Vim is probably the best because the default Vim has some problems with formatting and indenting HTML and CSS. You can get it to work exactly as VSC but it will take a lot of time in configuring it. For me, I think I have invested a lot of time in configuring Neovim to my liking 😅 and plugins like Vim move , quick scope , vim wiki and doge keeps me hooked to it.
mind sharing your config? :)
github.com/JDeepD/dotfiles/tree/ma...
thanks man :D
Watch DistroTube youtube he has a playlist on vim
or
Search for this book "Mastering Vim Quickly by Jovica Ilic"
Check out lunarvim. It's made specifically for users switching from vscode github.com/ChristianChiarulli/Luna...
God. Fucking. Bless. You.
This is exactly what I have been looking for. Not so much cause it brings a similar exp to VSCode, cause it is vim, I don't expect to have the same experience. But because it is an easy out-of-the-box config. This is very important for me, cause whenever I change to a different machine I always try to keep my configs simple and easy to install. Same with tmux. I use oh-my-tmux instead of my own config so I can easily install it wherever I go. Obviously I could create my own configs, but it makes way more sense for me to use the already existing ones from people with way more experience.
Sorry for the long reply, long story short: this is awesome.
Perhaps a simpler config would have been sufficient, but I am definitely trying this out. Thanks again!
Hey, There is a vim plugin called ctrl.p that does the same job but much faster, also there is another package called fzf which does similar thing.
fzf is a general purpose library to fuzzy find files. Many plugins use fzf under the hood
LunarVim is powerful, and out-of-box.
//for beginner: just press
space
call for popup-menuBTW, is there any bookmark extensions?
Check out marks
:help mark-motions
, they are builtin minimal bookmarks. I use a plugin which enhances marks: marks.nvim.If you really want bookmarks, check out vim-bookmark. There are many others, and integrations too. A quick google search will help you find them.
Each tool has its own set of ups and downs. In the case of Text Editors, Vim is good for code maintaining i.e, where you do more updations than writing something new. But, when we are building something from the scratch, we might need more third-party support and GUI intensive workflows, that's where using Vim is not a good idea.
I have built a number of things from scratch, including but not limited to, a couple of compilers, an UI library in react, few websites end to end, few web services, a number of fun side projects; I have done a number of freelance projects during my time in college too. I have never needed anything more than a terminal (guake on my Linux machine and iterm2 on my work laptop) and a browser (chrome only. I use browserstack for testing/previewing on other browsers). Vim has been an integral part of my Dev setup. It may not have all features of a modern IDE, but it's best at what it does-- text editing. For all other features that I need in my workflow, there is always a CLI tool that specialises in that. Even though I have tried multiple IDEs over the years, I found that the only useful thing that comes out-of-box with IDEs is static code analysis. This is the only thing that doesn't come with vim out-of-box, you need plugins for that. Most of the useful text editing features in modern IDEs are present in vim or covered by some plugin. Also I found that autocompletion in other IDEs feel fancier, but it's generally faster to write code without autocompletion as long as you are a decent typist and know what you're doing; also if your class, method and variable names are so verbose that autocompletion is faster than typing them out, then it's an indication that you need to reconsider the way you're naming stuff.
Woah, you've built a lot of stuff
What would be an example for a GUI workflow?
What do you mean?
Yeah, vim really is made for editing. But really most developers spend more time editing than coding - at least I do
"But really most developers spend more time editing than coding"
huh?
It depends on the situation and the environment. Let's say you are a freelancer, most probably you'll be creating different new projects. If you are working in a Company, it's highly probable that you'll be maintaining the codebase.
My conclusion is to, use the right tool for right work.
I mean we usually type out our code then spend a lot of time running it, and tweaking it and debugging it right?
At least it applies to me
I mean we usually type out our code then spend a lot of time running it, and tweaking it and debugging it right?
At least it applies to me
Thanks. I see: I just never saw "editing" as separate from "coding" or that "coding" only meant when it was written the first time.
To me it's just all coding and all editing.
Personally, I used to be a vim power user, and I'm still glad I learned it and still use it very often. However, as my primary editor, VS Code has really taken over for me.
Compared to vim, with VS Code I've never lost a file or even a single edit, I don't have to mess with swap or backup files.
But like others have said, they're tools. They're not religions. Pick the best for the situation and there's no harm in learning something new.
You can checkout my ~/.vimrc here: github.com/valbaca/dotfiles/blob/m...
And my "virc" which is a more minimal vimrc here: github.com/valbaca/dotfiles/blob/m...
Yeah the swap file thing is real. It's happened to me a few times
Right ... VIM is great, but I don't believe in the current hype about switching away from VSCode to a bare bones editor - for the record, VSCode is an editor, it's pretty lightweight and a far cry from traditional heavy IDEs like Netbeans/Eclipse and so on ... VSCode for the win :)
I don't too 😂. You don't have to switch if you have a good computer (not a 10 year old one like mine) which can handle VSCode or if you already use all of vscode features.
I think we agree then, mine is almost 10 years old as well but I've got 16 GB inside so why not just use that RAM ;)
Mine is a 2010 MacBook which runs macOS 10.12 (I really need to upgrade). There is a computer which runs windows 10 here but I won't use it 😂
Windoze ;) no neither would I, haha
I see quite often in the comment "here you can use my dotfiels, vimrc etc" At this point i would recoment to take a peak in the conf, but not blindly use them, I dont linke spaceVim either. I ve added plugins, when i needed it, and not because they sound maybe usefull. If I noticed i use features often, but have to type much i create a mapping for it.
eg:
also strg+f in comand node is very helpfull, if you want to alter a command from the history or th ecurrent one.
You workflow has to develop and will change over the time as well you vimrc will. I compare the vimrc to underware. Its your underware, which fits to you, and you don't realy want, that somebody else shit in it.
If you consider the UI to be ugly add a color scheme. There are a ton of them available. One popular color scheme is called Molokai. This repository, all by itself, has 128 color schemes available!!
github.com/chriskempson/base16-vim...
Just copy all the *.vim color schemes into your ~/.vim/colors/ directory. Try the color schemes in Gvim and Vim to see how they look. Also you can add a custom font like Hack font or a font you have installed on your system .
Your mean your VSCode is using SIX GIGABYTES of memory? I don't know but I guess you might be doing something wrong ...
Anyway, while I'm also a fan of VIM and use it frequently besides VSCode, there's no way I'm going to do away with my VSCode just to save a few bytes of RAM - I think VSCode is well worth the memory it consumes ... and VIM is also great, they make a great pair.
Nope VSCode is not using 6gb. I have a total of 6gb and vscode uses a huge chunk of it. Throw in Chrome and you have problems
Another thing is I don't really use all the features of vscode, so I really thought vim would be nice
Okay that makes sense ...
Welcome to the fold!
I made the switch from VS Code a couple weeks ago ( took ~2-3 days to adjust) and am now at feature parody with the features I was using in VS Code.
For me it wasn't so much about optimizing resource consumption but rather having a portable easy and quickly reproducible dev env setup that I could connect to from anywhere. It is nice to save gigabytes of RAM though :)
I switch between computers a lot and had been using SSH Remote plugin to do all my work in a remote Linux setup. Combining TMUX persistent sessions, neovim and vim sessions means I can connect from anything/anywhere and it's all ready to rock and roll all the time! It even works well connecting to my dev env from an Android device using TERMUX! With a nice portable keyboard I could totally do all my work from a silly little Android tablet or Chromebook.
I started with the coc plugins but then quickly jumped to nightly neovim + native lsp. Primarily writing Rust applications but also have had great success with typescript and Vue/nuxt application development. If anyone is stuck getting something set up or has questions on how you might do something in neovim that you were previously doing in Code please ask me here and I'll share any feedback that I can!
Thanks! I'll ask you if anything comes up.
I'm using neovim for almost 2 years now, and my advice is, don't try to replace one for another, chance is you get disappointed. Same for emacs.
Start using for small tasks (like quick edits or specific tasks like json files), and improve your config files as needed.
If you still have the urge to use more, research for plugins for specific needs, for development Coc is really good for beginners.
I'm thinking of first writing the code in VSCode and then doing all other edits and debugging in vim
When using nvim, you can create terminal buffer with
:terminal
commandsave time, just
:term
will work ;)
Nice tip!
Hey all,
I've just seen that neovim 0.5 is now released(4 days back). We can try out the LSP quite easiy as per the docs.
People who are not interested in nightly versions(like me, atleast for vim) can go & give it a shot.
I have been using this awesome opinionated init file to help make the transition smooth, includes a load of plugins and some sensible keybindings to make it feel like a first class citizen on your computer
Be sure to checkout the readme!
github.com/Blacksuan19/init.nvim
Thanks! I use the default nvim config for now
You won't regret it.
I'm writing a series of article to learn Vim if you're interested.
I've also written an entire book how to build a mouseless development environment with the shell as the central part. I explain in details how to configure Arch Linux, i3, tmux, Neovim, and Zsh altogether for building a coherent whole. It changed my life as a developer years ago.
Hope it helps!
Nice! I'll check out the book sometime
The learning curve is steep. But it's worth the effort, vim makes editing code much efficient. You'll have to find the right plugins for your needs though.
I have been using vim since 2012, I have tried a number of other modern text editors over the years, but haven't found anything as efficient as vim.
Yes, I agree but initially, Vim or Neovim is more like DIY stuff. You've to try things that are better for you and create a unique configuration (dotfiles). It's unique version of yourself.
check out this UI - github.com/siduck76/NvChad
Welcome to the club!
I am using Vim and try to make it to look like an IDE by installing
NERDTree
etc. FYI, Vim 8.x already has built-in plugin system. So, no need plugin manager at all if you don’t care much about the plugin updates.Here’s my .vimrc
Congrats!
I've been using a similar setup for 3 years now. Still can't switch to things like RubyMine or VSCode, mostly due to the ease of navigation with (neo)vim and the mappings I'm used to. They're much more intuitive, mnemonic and personalised than things like command + shift + control + F12.
Yeah, the keyboard shortcuts are really hard to remember because most IDEs don't have a concept of modes
I humbly suggest anyone to do their own research. Sometimes we get the idea about a tool that will sky-rocket our productivity. Everyone is free to use what they prefer, but I honestly think vim is unintentionally thought as a must-have tool of a developer. It's not. Try it out, give it some time, because it has a steep learning curve, nobody denies it. If that does not suit you, keep moving on with your previous editor and don't get discouraged. There will always be pros and cons of different editors. Stick with the one you prefer and know that it is only necessary to switch your editor when you actually need to.
I have experienced this a billion times, but vim seems good for me
problem is all tutorials suck I haven't found one single one that suits me ;)
I could try to write one. Beginners are better at explaining beginner stuff
Key word: try.
already tried and gave up :)
just BTW, in case someone is wondering, the number one reason Vim makes you faster and feels better is that it forces you to learn touch-typing and to rely on keyboard shortcuts.
But the truth is (and I love vim mind you) if you learned/remapped your keyboard shortcuts on pretty much any other editor, you'd attain the same efficiency. Just as a tiling window manager will make a standard desktop environment feel cumbersome because you have to use the mouse, but that's not true, you just haven't bothered to learn and optimise the shortcuts on a full-fledged DE like Gnome or KDE, but they can be just has efficient.
The only real advantage of vim is the near endless possibilities and configurations, allowing you to really custom tailor it to your workflow. I love this but then again I love configuring and tweaking things, if you don't like that then just go with you editor of choice, learn to touch-type and to use shortcuts as much as possible, and I can guarantee you'll be just as productive as you would have been if you had taken the time to learn and configure Vim.
I am considering to change to vim, but I decided first I jave to get used to the keyboard environment, so I am practicing to use the keyboard only on vs code.
You can't use only the keyboard in VSC (unless you have the vim extension)
i have the vim extension, and vs code has some key bindings to speed up the process of some tasks
If you want to use native VIM like VSCODE, you will waste a lot of time doing the initial setup. It is recommended to use neo-vim extension in VSCODE.
I don't want use it like vscode, I just want it to be great
The comment you posted was that you switched because of a useful feature of vim. So, I mentioned that you can use the useful features of vim in vscode as well. Just saying that vscode is heavy and uses native vim is an appropriate expression.
Next stop: vim golf :)
Vim golf?
Yeah, it's an online game people play to see how few keystrokes they can use to accomplish an editing task. The fewest strokes wins: vimgolf.com . The game helps make vim users even more productive :)
I knew it!
Trying to use the fewest number of keystrokes to accomplish some predetermined task. Like playing golf; the fewer strokes the better.
I used gvim for a while back in college, and still use it a little bit because it's the default editor in my git config. The problem I always have is that, in the time it takes me to learn its shortcuts and add the plugins I need, I could have learned an actual language.
Speaking of git config, I gotta change my default editor. Thanks for the (unintentional) heads up!
linux / unix offer everything. But only trade-off is "Time" ¯_ʘ‿ʘ_/¯
Time taken for learning you mean
In "Linux world" the learning & doing things can't be separated.
Because you can't learn any entities in this system completely in a short time.
Hands on is the only way 4u to explore here. This consumes time. So, I mentioned that ¯\(◉‿◉)/¯
So true.
Ok, text editing using vim is my favorite time of the day
But how about debugging? Go to definition?
for (n)vim is vimspector and vim-dap. vimspector is quite good, but i dont have experience with dap.
For general heavy IDE stuff - take a look in coc-vim this thing supports a lots of stuff like quickfix, go to definition/reference, show docs, and some other codeactions. This extension supports most of the features which a lsp is providing.
But here its maybe worth it to take a look in to the nvim lsp feature which should cover the same stuff.
But vim ist still just only a text editor. The learning curve is high, and most of the time you will at least pay with your time to adapt, and have maybe script addiotional stuff, that it can support your workflow. (like trigger your builds, tests or debug session with a shortkey)
I actually don't use my IDE for debugging. So I'll never know the difference, I guess?
I actually don't use most of my IDE, so I'm really comfortable with this transition.
I use SpaceVim + tmux + zsh as an IDE successfully for couple of years already. If someone needs nice and preconfigured NeoVim, I highly recommend it!
For anyone who are trying to switch to full vim, but don't know how or where to start, you can use a tool call Vim Boostrap, it will help you generate a a pretty good started .vimrc file :D
vim-bootstrap.com/
If you've changed to vim without any way back, you might say it's SINK OR VIM for you. 😂
I'm also thinking of switching to Vim after seeing another developer code faster than his shadow! more than assimilating all the shortcuts !! ;)
The Primeagen will guide you youtube.com/playlist?list=PLm323Lc...
How thanks for this start step!!
You don't have to learn every shortcut at the start, you'll eventually learn it. For now, just skim through the shortcuts, and pick the ones you learn most
I'm not use vim in terminal. By vim mode in every IDE which I use. 😊
I'll see if that happens to me! 😅
Either ways, In future if you move to Vscode and want to use Vim config again, Use VSCode Neovim plugin instead of the famous VScodeVim. The reason is that VsCode Neovim uses a complete Neovim instance in the backend which means you can run Neovim plugins inside Vscode(something which the latter did not allow.)
The best thing about vim is that you just never get bored with it, as other IDE's are cool at first and then slowly get boring or show their limitations, with vim it's the opposite, at first it seems cumbersome and highly underwhelming, but over time it just get's better and better.
What lenguaje do you use?
Mainly Javascript, sometimes HTML/CSS
I’d like to suggest my neovim config github.com/JuanVqz/dotfiles
I have using vim for several years writing web technologies. Keep posting buddy
For me, I just don't use the tools it provides too much. But it's not that ugly for me, especially because I have made TUIs and also my font does a great job at ligatures
Have you tried EMACS?
No.
Use : github.com/vermaneerajin/dotfiles/...
Vim script. Everything will be just one 'space' click away.
I think I'll come up with a custom one
I have been using NeoVim for a year now. 😁
You are doing the right move, nvim + tmux is very powerful once configured correctly, i have been using it for the last 3 years now and there is just no limit on what you can do with it.