I try to change
rest.get = function(url,onsuccess,onerror) {
rest.askServer("GET", url, null,200,onsuccess,onerror);
};
into
rest.get = function(url, onsuccess, onerror) {
rest.askServer("GET", url, null, 200, onsuccess, onerror);
};
I thought this command would work:
:%s/,(\S)/, \1/g
But it doesn't.
Why ? What command should I use ?