I want to make part of my main package into an internal package. It's only 
one file and I only need to export a single struct type and one function.  
Seemed easy enough -- just git mv the file to ../internal/<newname> and use 
GoRename in vim.  Problem is that all the struct fields are lowercase and 
they're accessed in numerous places multiple files in the main code and 
GoRename refuses to run unless the entire project can pass go vet.

I'll probably end up doing it the hard way with search and replace but it 
seems worth asking if there's a capability in the go tools I don't know 
about.  Using non-exportable names in the main code seems like good 
practice.  It would be nice, though, to have an efficient way to change 
names for export when it makes sense to refactor some files into their own 
package.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to