I just know how to modify the tab width in NSTextView
NSMutableParagraphStyle *paragraphStyle = [[self defaultParagraphStyle] mutableCopy];
[paragraphStyle setTabStops:[NSArray array]];
[paragraphStyle setDefaultTabInterval: tabWidth];
But, is there any way to use 4 SPACES instead of TAB in NSTextView?